launchWhenLifecycleStateStarted<T> method

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

Implementation

Future<T> launchWhenLifecycleStateStarted<T>(
        {bool runWithDelayed = false,
        Cancellable? cancellable,
        required FutureOr<T> Function(Cancellable cancellable) block}) =>
    launchWhenLifecycleStateAtLeast(
        targetState: LifecycleState.started,
        runWithDelayed: runWithDelayed,
        cancellable: cancellable,
        block: block);