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