Timer constructor
- Duration duration,
- void callback(
Creates a new timer.
The callback
function is invoked after the given duration
.
Example:
final timer =
Timer(const Duration(seconds: 5), () => print('Timer finished'));
// Outputs after 5 seconds: "Timer finished".
Implementation
factory Timer