ensureTimer method

void ensureTimer(
  1. Duration period,
  2. void onTick()
)

Implementation

void ensureTimer(Duration period, void Function() onTick) {
  _timer ??= Timer.periodic(period, (_) => onTick());
}