ChatNotificationContent constructor

const ChatNotificationContent({
  1. required String id,
  2. required String roomId,
  3. required String title,
  4. required String body,
  5. required String token,
  6. required String platform,
  7. Profile? profile,
  8. int retryCount = 0,
  9. DateTime? expiresAt,
})

Implementation

const ChatNotificationContent({
  required this.id,
  required this.roomId,
  required this.title,
  required this.body,
  required this.token,
  required this.platform,
  this.profile,
  this.retryCount = 0,
  this.expiresAt,
});