WListTile constructor

const WListTile({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? subtitle,
  5. Widget? trailing,
  6. String? className,
  7. VoidCallback? onTap,
  8. EdgeInsetsGeometry? padding,
  9. Color? backgroundColor,
  10. Color? hoverColor,
  11. Color? splashColor,
  12. BorderRadius? borderRadius,
  13. bool enabled = true,
  14. bool selected = false,
  15. Color? selectedColor,
})

Implementation

const WListTile({
  super.key,
  this.leading,
  this.title,
  this.subtitle,
  this.trailing,
  this.className,
  this.onTap,
  this.padding,
  this.backgroundColor,
  this.hoverColor,
  this.splashColor,
  this.borderRadius,
  this.enabled = true,
  this.selected = false,
  this.selectedColor,
});