flutter cancel timer code example
Example 1: timer in flutter
Future.delayed(Duration(seconds: 1), () {
print('yo hey');
});
Example 2: flutter periodic timer
Timer.periodic(
Duration duration,
void callback(
Timer timer
)
)