YListTile constructor

YListTile(
  1. String title,
  2. String? image,
  3. dynamic onClick(), {
  4. Color bgColor = Colors.transparent,
  5. double imageSize = 20,
  6. Widget? right,
  7. EdgeInsets? padding,
  8. TextStyle? titleStyle,
  9. bool enable = true,
})

Implementation

YListTile(
  this.title,
  this.image,
  this.onClick, {
  this.bgColor = Colors.transparent,
  this.imageSize = 20,
  this.right,
  this.padding,
  this.titleStyle,
  this.enable = true,
});