deleteNotificationTokenUseCaseProvider top-level property

Provider<DeleteNotificationTokenUseCase> deleteNotificationTokenUseCaseProvider
final

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

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

Implementation

final deleteNotificationTokenUseCaseProvider =
    Provider<DeleteNotificationTokenUseCase>(
  (ref) => const NoopDeleteNotificationTokenUseCase(),
);