Message constructor

Message({
  1. Action? action,
  2. String? body,
  3. String? imageIconUrl,
  4. String? imageSmallIconUrl,
  5. String? imageUrl,
  6. String? jsonBody,
  7. String? mediaUrl,
  8. String? rawContent,
  9. bool? silentPush,
  10. int? timeToLive,
  11. String? title,
  12. String? url,
})

Implementation

Message({
  this.action,
  this.body,
  this.imageIconUrl,
  this.imageSmallIconUrl,
  this.imageUrl,
  this.jsonBody,
  this.mediaUrl,
  this.rawContent,
  this.silentPush,
  this.timeToLive,
  this.title,
  this.url,
});