whenLifecycleStateAtLeast method

Future<Cancellable> whenLifecycleStateAtLeast(
  1. LifecycleState state, {
  2. bool runWithDelayed = false,
  3. Cancellable? cancellable,
})

Implementation

Future<Cancellable> whenLifecycleStateAtLeast(LifecycleState state,
        {bool runWithDelayed = false, Cancellable? cancellable}) =>
    launchWhenLifecycleStateAtLeast(
        targetState: state,
        runWithDelayed: runWithDelayed,
        cancellable: cancellable,
        block: (c) => c);