NotificationManagerImpl constructor

NotificationManagerImpl({
  1. required FlutterLocalNotificationsPlugin notificationClient,
  2. required NotificationNavigation notificationNavigation,
  3. required NotificationPayload getNotificationPayload(
    1. Map<String, dynamic>
    ),
  4. required NotificationConfig config,
})

Implementation

NotificationManagerImpl({
  required this.notificationClient,
  required this.notificationNavigation,
  required this.getNotificationPayload,
  required this.config,
}) {
  _init();
}