NotificationItem constructor

NotificationItem({
  1. required String? androidClick,
  2. required String? apnsClick,
  3. required String? header,
  4. required String? subheader,
  5. required String? body,
  6. required String? category,
  7. required String? urlPath,
  8. required int? notificationId,
  9. required int? isUserRead,
  10. required DateTime? createdDate,
})

Implementation

NotificationItem({
  required this.androidClick,
  required this.apnsClick,
  required this.header,
  required this.subheader,
  required this.body,
  required this.category,
  required this.urlPath,
  required this.notificationId,
  required this.isUserRead,
  required this.createdDate,
});