NotificationModel constructor

NotificationModel({
  1. int? id,
  2. String? header,
  3. String? content,
  4. dynamic messageId,
  5. dynamic orderId,
  6. bool? seen,
  7. DateTime? createdAt,
})

Implementation

NotificationModel({
  this.id,
  this.header,
  this.content,
  this.messageId,
  this.orderId,
  this.seen,
  this.createdAt,
});