EcpPickerTileItem<T> constructor

const EcpPickerTileItem<T>({
  1. Key? key,
  2. required SelectWrapper<T> wrapper,
  3. bool showCheckBox = true,
  4. IconData? icon,
  5. String onDisplay(
    1. T
    )?,
  6. EcpTileIconBuilder<T>? iconBuilder,
  7. dynamic onSelected(
    1. bool?
    )?,
})

Implementation

const EcpPickerTileItem({
  super.key,
  required this.wrapper,
  this.showCheckBox = true,
  this.icon,
  this.onDisplay,
  this.iconBuilder,
  this.onSelected,
});