Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

dart timer repeat

Timer(Duration(seconds: 3), () {
  print("Yeah, this line is printed after 3 second");
});

// repeatedly :
Timer.periodic(Duration(seconds: 5), (timer) {
  print(DateTime.now());
});
Source by fluttermaster.com #
 
PREVIOUS NEXT
Tagged: #dart #timer #repeat
ADD COMMENT
Topic
Name
5+2 =