updateNotificationTokenUseCaseProvider top-level property

Provider<UpdateNotificationTokenUseCase> updateNotificationTokenUseCaseProvider
final

Provides a use case for updating the currently logged-in user's notification token within the backend.

By default, provides a use case that does nothing. Consider overriding with realUpdateNotificationTokenUseCaseProvider for an implementation that actually updates the user's notification token with the backend.

Implementation

final updateNotificationTokenUseCaseProvider =
    Provider<UpdateNotificationTokenUseCase>(
  (ref) => const NoopUpdateNotificationTokenUseCase(),
);