ChannelName constructor

const ChannelName({
  1. Key? key,
  2. TextStyle? textStyle,
  3. TextOverflow textOverflow = TextOverflow.ellipsis,
})

Displays the current Channel name using a Text widget.

The widget uses a StreamBuilder to render the channel information image as soon as it updates.

Implementation

const ChannelName({
  super.key,
  this.textStyle,
  this.textOverflow = TextOverflow.ellipsis,
});