StreamChannelInfo constructor

const StreamChannelInfo({
  1. Key? key,
  2. required Channel channel,
  3. TextStyle? textStyle,
  4. bool showTypingIndicator = true,
  5. String? parentId,
})

Displays information about the current Channel.

Implementation

const StreamChannelInfo({
  super.key,
  required this.channel,
  this.textStyle,
  this.showTypingIndicator = true,
  this.parentId,
});