notificationServiceProvider top-level property

AutoDisposeProvider<NotificationService> notificationServiceProvider
final

Implementation

final notificationServiceProvider = Provider.autoDispose(
  (ref) => NotificationService(
    FlutterLocalNotificationsPlugin(),
    ref.read(notificationHandlerProvider),
    ref.read(loggerCaptureServiceProvider),
  ),
);