NotificationEvent constructor

NotificationEvent({
  1. String? uniqueId,
  2. String? key,
  3. int? id,
  4. int? uid,
  5. String? channelId,
  6. DateTime? createAt,
  7. String? packageName,
  8. String? title,
  9. String? text,
  10. String? message,
  11. int? timestamp,
  12. bool? hasLargeIcon,
  13. Uint8List? largeIcon,
  14. bool? canTap,
})

Implementation

NotificationEvent({
  this.uniqueId,
  this.key,
  this.id,
  this.uid,
  this.channelId,
  this.createAt,
  this.packageName,
  this.title,
  this.text,
  this.message,
  this.timestamp,
  // this.icon,
  this.hasLargeIcon,
  this.largeIcon,
  this.canTap,
});