Message constructor

Message({
  1. String? alias,
  2. String? msg,
  3. bool? parseUrls,
  4. Bot? bot,
  5. bool? groupable,
  6. String? t,
  7. DateTime? ts,
  8. User? user,
  9. String? rid,
  10. Map<String, Reaction>? reactions,
  11. List<Mention>? mentions,
  12. List<String>? channels,
  13. Map<String, String>? starred,
  14. String? emoji,
  15. String? avatar,
  16. List<MessageAttachment>? attachments,
  17. User? editedBy,
  18. DateTime? editedAt,
  19. List<String>? urls,
})

Implementation

Message({
  this.alias,
  this.msg,
  this.parseUrls,
  this.bot,
  this.groupable,
  this.t,
  this.ts,
  this.user,
  this.rid,
  this.reactions,
  this.mentions,
  this.channels,
  this.starred,
  this.emoji,
  this.avatar,
  this.attachments,
  this.editedBy,
  this.editedAt,
  this.urls,
});