whenLifecycleStateStarted method

Future<Cancellable> whenLifecycleStateStarted({
  1. bool runWithDelayed = false,
  2. Cancellable? cancellable,
})

Implementation

Future<Cancellable> whenLifecycleStateStarted(
        {bool runWithDelayed = false, Cancellable? cancellable}) =>
    whenLifecycleStateAtLeast(LifecycleState.started,
        runWithDelayed: runWithDelayed, cancellable: cancellable);