repeatOnLifecycleResumed<T> method
void
repeatOnLifecycleResumed<T>({})
Implementation
void repeatOnLifecycleResumed<T>(
{bool runWithDelayed = false,
Cancellable? cancellable,
required FutureOr<T> Function(Cancellable cancellable) block}) =>
repeatOnLifecycle(
targetState: LifecycleState.resumed,
runWithDelayed: runWithDelayed,
cancellable: cancellable,
block: block);