VTile constructor

const VTile({
  1. Key? key,
  2. required Widget title,
  3. bool enabled = true,
  4. bool selected = false,
  5. VoidCallback? onPress,
  6. Widget? subtitle,
  7. Widget? details,
  8. Widget? prefix,
  9. Widget? suffix,
})

Implementation

const VTile({
  super.key,
  required this.title,
  this.enabled = true,
  this.selected = false,
  this.onPress,
  this.subtitle,
  this.details,
  this.prefix,
  this.suffix,
});