Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

dart timer delay

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 #delay
ADD COMMENT
Topic
Name
7+2 =