AndroidNotification constructor

AndroidNotification({
  1. String? title,
  2. String? body,
  3. String? icon,
  4. String? color,
  5. String? sound,
  6. String? tag,
  7. String? imageUrl,
  8. String? clickAction,
  9. String? bodyLocKey,
  10. List<String>? bodyLocArgs,
  11. String? titleLocKey,
  12. List<String>? titleLocArgs,
  13. String? channelId,
  14. String? ticker,
  15. bool? sticky,
  16. DateTime? eventTimestamp,
  17. bool? localOnly,
  18. AndroidNotificationPriority? priority,
  19. List<String>? vibrateTimingsMillis,
  20. bool? defaultVibrateTimings,
  21. bool? defaultSound,
  22. LightSettings? lightSettings,
  23. bool? defaultLightSettings,
  24. AndroidNotificationVisibility? visibility,
  25. int? notificationCount,
})

Represents the Android-specific notification options that can be included in AndroidConfig.

Implementation

AndroidNotification({
  this.title,
  this.body,
  this.icon,
  this.color,
  this.sound,
  this.tag,
  this.imageUrl,
  this.clickAction,
  this.bodyLocKey,
  this.bodyLocArgs,
  this.titleLocKey,
  this.titleLocArgs,
  this.channelId,
  this.ticker,
  this.sticky,
  this.eventTimestamp,
  this.localOnly,
  this.priority,
  this.vibrateTimingsMillis,
  this.defaultVibrateTimings,
  this.defaultSound,
  this.lightSettings,
  this.defaultLightSettings,
  this.visibility,
  this.notificationCount,
});