repeatOnLifecycleStarted<T> method

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

Implementation

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