collectOnLifecycleStarted<T> method

Stream<T> collectOnLifecycleStarted<T>({
  1. bool runWithDelayed = false,
  2. Cancellable? cancellable,
  3. required FutureOr<T> block(
    1. Cancellable cancellable
    ),
})

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);