S360fSelectableOption constructor

const S360fSelectableOption({
  1. required S360fSelectableOptionItem item,
  2. required void onTap(
    1. Object id
    ),
  3. void onDisableTap()?,
  4. Key? key,
  5. bool disabled = false,
  6. Color selectedBorderColor = Colors.black,
  7. Color selectedBackgroundColor = Colors.grey,
  8. bool showCheckbox = false,
})

Implementation

const S360fSelectableOption({
  required this.item,
  required this.onTap,
  this.onDisableTap,
  super.key,
  this.disabled = false,
  this.selectedBorderColor = Colors.black,
  this.selectedBackgroundColor = Colors.grey,
  this.showCheckbox = false,
});