NotificationServiceImpl constructor

NotificationServiceImpl({
  1. required IHttpClient? httpClient,
  2. Logger? logger,
  3. required AppNotificationConfig notificationConfig,
})

Implementation

NotificationServiceImpl({
  required IHttpClient? httpClient,
  Logger? logger,
  required this.notificationConfig,
}) : super(logger: logger ?? getAppNotificationLogger(notificationConfig), client: httpClient ?? getItNotifications());