NotificationConfig constructor

NotificationConfig({
  1. required String appIcon,
  2. required String notificationChannelId,
  3. required String notificationChannelName,
  4. required String notificationChannelDescription,
})

Implementation

NotificationConfig({
  /// Pass the name of the icon to show in notification popup. This icon should be inside `@drawable/` in android folder.
  required this.appIcon,
  required this.notificationChannelId,
  required this.notificationChannelName,
  required this.notificationChannelDescription,
});