StreamChannelGridTile constructor

const StreamChannelGridTile({
  1. Key? key,
  2. required Channel channel,
  3. Widget? child,
  4. Widget? footer,
  5. GestureTapCallback? onTap,
  6. GestureLongPressCallback? onLongPress,
})

Creates a new instance of StreamChannelGridTile widget.

Implementation

const StreamChannelGridTile({
  super.key,
  required this.channel,
  this.child,
  this.footer,
  this.onTap,
  this.onLongPress,
});