NotificationUserData constructor

NotificationUserData(
  1. {int? id,
  2. String? type,
  3. String? subject,
  4. String? message,
  5. String? notificationType}
)

Implementation

NotificationUserData({
  this.id,
  this.type,
  this.subject,
  this.message,
  this.notificationType,
});