nonPeriodicTimerCount property Null safety
The number of active non-periodic timers created within a call to run or fakeAsync.
Implementation
int get nonPeriodicTimerCount =>
_timers.where((timer) => !timer.isPeriodic).length;
The number of active non-periodic timers created within a call to run or fakeAsync.
int get nonPeriodicTimerCount =>
_timers.where((timer) => !timer.isPeriodic).length;