ChannelName constructor

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

Instantiate a new ChannelName

Implementation

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