intervalTimerCreate method
Implementation
Future intervalTimerCreate() async {
//fire now
_fireTimerAction();
//wait some second then fire
myTimer = Timer.periodic(const Duration(milliseconds: 1000 ), (_) {
_fireTimerAction();
});
}