ChannelAvatar constructor

const ChannelAvatar({
  1. Key? key,
  2. Channel? channel,
  3. BoxConstraints? constraints,
  4. VoidCallback? onTap,
  5. BorderRadius? borderRadius,
  6. bool selected = false,
  7. Color? selectionColor,
  8. double selectionThickness = 4,
})

Instantiate a new ChannelImage

Implementation

const ChannelAvatar({
  Key? key,
  this.channel,
  this.constraints,
  this.onTap,
  this.borderRadius,
  this.selected = false,
  this.selectionColor,
  this.selectionThickness = 4,
}) : super(key: key);