AndroidNotification constructor

AndroidNotification({
  1. String? sound,
  2. String? clickAction,
  3. String? color,
  4. String? tag,
  5. String? bodyLocKey,
  6. List<String>? bodyLocArgs,
  7. String? titleLocKey,
  8. List<String>? titleLocArgs,
  9. String? channelId,
  10. bool? sticky,
  11. DateTime? eventTime,
  12. bool? localOnly,
  13. bool? defaultSound,
  14. bool? defaultVibrateTimings,
  15. bool? defaultLightSettings,
  16. List<String>? vibrateTimings,
  17. NotificationVisibility? visibility,
  18. String? notificationPriority,
  19. int? notificationCount,
  20. LightSettings? lightSettings,
})

Implementation

AndroidNotification({
  this.sound,
  this.clickAction,
  this.color,
  this.tag,
  this.bodyLocKey,
  this.bodyLocArgs,
  this.titleLocKey,
  this.titleLocArgs,
  this.channelId,
  this.sticky,
  this.eventTime,
  this.localOnly,
  this.defaultSound,
  this.defaultVibrateTimings,
  this.defaultLightSettings,
  this.vibrateTimings,
  this.visibility,
  this.notificationPriority,
  this.notificationCount,
  this.lightSettings,
});