MessageModel constructor

MessageModel({
  1. String? title,
  2. String? body,
  3. String? color,
  4. String? sound,
  5. String? image,
})

Implementation

MessageModel({
  this.title,
  this.body,
  this.color,
  this.sound,
  this.image,
});