MessageNew constructor

MessageNew({
  1. String? alias,
  2. String? avatar,
  3. String? channel,
  4. String? emoji,
  5. String? roomId,
  6. String? text,
  7. List<MessageAttachment>? attachments,
})

Implementation

MessageNew({
  this.alias,
  this.avatar,
  this.channel,
  this.emoji,
  this.roomId,
  this.text,
  this.attachments,
});