DeliveredNotification constructor

DeliveredNotification({
  1. required NotificationId id,
  2. required String title,
  3. required String body,
  4. required String subtitle,
  5. required String threadIdentifier,
  6. required Map<Object?, Object?> payload,
  7. String? androidTag,
})

Implementation

DeliveredNotification({
  required this.id,
  required this.title,
  required this.body,
  required this.subtitle,
  required this.threadIdentifier,
  required this.payload,
  this.androidTag,
});