pendingExerciseNotifierProvider top-level property

StateNotifierProvider<PendingExerciseNotifier, Map<int, PendingExerciseSubscription>> pendingExerciseNotifierProvider
final

Provides a notifier that holds information on whether any device has a pending exercise to be run.

Implementation

final pendingExerciseNotifierProvider = StateNotifierProvider<
    PendingExerciseNotifier, Map<int, PendingExerciseSubscription>>(
  (ref) => PendingExerciseNotifier(),
);