SafaehOptionTile constructor

const SafaehOptionTile({
  1. Key? key,
  2. required Widget title,
  3. Widget? subtitle,
  4. Widget? leading,
  5. Widget? trailing,
  6. VoidCallback? onTap,
  7. bool selected = false,
  8. bool destructive = false,
  9. bool enabled = true,
  10. Color? selectedFill,
  11. Color? selectedBorder,
})

Implementation

const SafaehOptionTile({
  super.key,
  required this.title,
  this.subtitle,
  this.leading,
  this.trailing,
  this.onTap,
  this.selected = false,
  this.destructive = false,
  this.enabled = true,
  this.selectedFill,
  this.selectedBorder,
});