ChipListWidget constructor

ChipListWidget({
  1. Key? key,
  2. required List<ChipModel> children,
  3. bool multiSelect = false,
  4. Color? selectedColor,
  5. Color? unSelectedColor,
  6. dynamic onSelect(
    1. ChipModel chip,
    2. bool selected
    )?,
  7. PrimitiveWrapper<List<ChipModel>>? controller,
})

Implementation

ChipListWidget(
    {Key? key,
    required this.children,
    this.multiSelect = false,
    this.selectedColor,
    this.unSelectedColor,
    this.onSelect,
    this.controller})
    : super(key: key);