MessageNotificationModel constructor

MessageNotificationModel({
  1. int id = 0,
  2. String title = '',
  3. String body = '',
  4. String userId = '',
  5. String imagePath = '',
})

Implementation

MessageNotificationModel({
  this.id = 0,
  this.title = '',
  this.body = '',
  this.userId = '',
  this.imagePath = '',
});