ChannelCapabilities constructor

const ChannelCapabilities({
  1. bool text = true,
  2. bool richMessages = false,
  3. bool attachments = false,
  4. bool reactions = false,
  5. bool threads = false,
  6. bool editing = false,
  7. bool deleting = false,
  8. bool typingIndicator = false,
  9. int? maxMessageLength,
})

Implementation

const ChannelCapabilities({
  this.text = true,
  this.richMessages = false,
  this.attachments = false,
  this.reactions = false,
  this.threads = false,
  this.editing = false,
  this.deleting = false,
  this.typingIndicator = false,
  this.maxMessageLength,
});