AndroidNotificationOptions constructor
AndroidNotificationOptions({})
Implementation
AndroidNotificationOptions({
required this.id,
required this.channelId,
required this.channelName,
required this.notificationTitle,
this.notificationText,
this.channelDescription,
this.enableVibration = false,
this.playSound = false,
this.showWhen = false,
this.iconData,
}) : assert(channelId.isNotEmpty),
assert(channelName.isNotEmpty),
assert(notificationTitle.isNotEmpty);