ItemSelect constructor

const ItemSelect({
  1. Key? key,
  2. required Item item,
  3. ItemSelectController? controller,
  4. GroupSelectControllerStore? selectController,
  5. Color? activeColor,
  6. dynamic onChnage(
    1. dynamic
    )?,
})

Implementation

const ItemSelect({
  Key? key,
  required this.item,
  this.controller,
  this.selectController,
  this.activeColor,
  this.onChnage,
}) : super(key: key);