AndroidNotification constructor

const AndroidNotification({
  1. String? channelId,
  2. String? clickAction,
  3. String? color,
  4. int? count,
  5. String? imageUrl,
  6. String? link,
  7. AndroidNotificationPriority priority = AndroidNotificationPriority.defaultPriority,
  8. String? smallIcon,
  9. String? sound,
  10. String? ticker,
  11. String? tag,
  12. AndroidNotificationVisibility visibility = AndroidNotificationVisibility.private,
})

Implementation

const AndroidNotification({
  this.channelId,
  this.clickAction,
  this.color,
  this.count,
  this.imageUrl,
  this.link,
  this.priority = AndroidNotificationPriority.defaultPriority,
  this.smallIcon,
  this.sound,
  this.ticker,
  this.tag,
  this.visibility = AndroidNotificationVisibility.private,
});