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