Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

how to repeatedly call a function flutter

import 'dart:async';

main() {
var time = const Duration(//milliseconds: // // seconds: // // minutes: // ...);
   Timer.periodic(time, (timer) => {// Function}
   ),
}
 
PREVIOUS NEXT
Tagged: #repeatedly #call #function #flutter
ADD COMMENT
Topic
Name
6+9 =