NotificationPayload constructor

NotificationPayload({
  1. required Map<String, dynamic> data,
  2. required NotificationMessage? message,
  3. required DateTime? sentTime,
  4. required bool hasAndroidNotification,
})

Implementation

NotificationPayload({
  required this.data,
  required this.message,
  required this.sentTime,
  required this.hasAndroidNotification,
});