notificationService function

  1. @Riverpod(keepAlive: true)
NotificationService? notificationService(
  1. Ref<Object?> ref
)

Implementation

@Riverpod(keepAlive: true)
NotificationService? notificationService(Ref ref) {
  if (kIsWeb) return null;
  return NotificationService();
}