S360fSelectableOptionsContainer constructor

const S360fSelectableOptionsContainer({
  1. required List<S360fSelectableOptionItem> items,
  2. Widget? itemBuilder(
    1. BuildContext context,
    2. int index
    )?,
  3. int cols = 2,
  4. double colSpacing = 0,
  5. double rowSpacing = 0,
  6. void onItemTap(
    1. Object id
    )?,
  7. void onDisableTap()?,
  8. bool disabled = false,
  9. double? extent,
  10. bool showCheckbox = false,
  11. Key? key,
})

Implementation

const S360fSelectableOptionsContainer({
  required this.items,
  this.itemBuilder,
  this.cols = 2,
  this.colSpacing = 0,
  this.rowSpacing = 0,
  this.onItemTap,
  this.onDisableTap,
  this.disabled = false,
  this.extent,
  this.showCheckbox = false,
  super.key,
});