collectOnLifecycleResumed<T> method

Stream<T> collectOnLifecycleResumed<T>({
  1. bool runWithDelayed = false,
  2. bool collectBlockError = false,
  3. bool ignoreBlockError = false,
  4. Cancellable? cancellable,
  5. required FutureOr<T> block(
    1. Cancellable cancellable
    ),
})

Implementation

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