StreamOptionListTile constructor

const StreamOptionListTile({
  1. Key? key,
  2. required String title,
  3. Widget? leading,
  4. Widget? trailing,
  5. VoidCallback? onTap,
  6. Color? titleColor,
  7. Color? tileColor,
  8. Color? separatorColor,
  9. TextStyle? titleTextStyle,
})

List tile for ChannelBottomSheet

Implementation

const StreamOptionListTile({
  super.key,
  required this.title,
  this.leading,
  this.trailing,
  this.onTap,
  this.titleColor,
  this.tileColor,
  this.separatorColor,
  this.titleTextStyle,
});