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