PushNotification constructor

const PushNotification({
  1. Map<String, dynamic>? content,
  2. PushNotificationCounts? counts,
  3. required List<PushNotificationDevice> devices,
  4. String? eventId,
  5. String? prio,
  6. String? roomAlias,
  7. String? roomId,
  8. String? roomName,
  9. String? sender,
  10. String? senderDisplayName,
  11. String? type,
})

Implementation

const PushNotification({
  this.content,
  this.counts,
  required this.devices,
  this.eventId,
  this.prio,
  this.roomAlias,
  this.roomId,
  this.roomName,
  this.sender,
  this.senderDisplayName,
  this.type,
});