NotificationMessageModel constructor

NotificationMessageModel(
  1. {int? id,
  2. int? parentId,
  3. String? type,
  4. required String message,
  5. int? isSent}
)

Implementation

NotificationMessageModel({
  this.id,
  this.parentId,
  this.type,
  required this.message,
  this.isSent,
});