Notification constructor

Notification({
  1. String? layout,
  2. String? title,
  3. String? text,
  4. String? color,
  5. String? channelName,
  6. String? channelId,
  7. String? smallIcon,
  8. String? largeIcon,
  9. int? priority,
  10. bool? sticky,
  11. Map<String, String>? strings,
  12. List<String>? actions,
})

Implementation

Notification(
    {this.layout,
    this.title,
    this.text,
    this.color,
    this.channelName,
    this.channelId,
    this.smallIcon,
    this.largeIcon,
    this.priority,
    this.sticky,
    this.strings,
    this.actions});