whenLifecycleStateResumed method

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

Implementation

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