BaseNotificationModel constructor

BaseNotificationModel({
  1. required PushType type,
  2. required String id,
  3. required String tags,
  4. required String thumb,
  5. required String sound,
  6. required String title,
  7. required String message,
  8. required String link,
  9. String? linkId,
  10. List<ButtonModel>? buttons,
})

Implementation

BaseNotificationModel({
  required this.type,
  required this.id,
  required this.tags,
  required this.thumb,
  required this.sound,
  required this.title,
  required this.message,
  required this.link,
  this.linkId,
  this.buttons,
});