MultiSelectChipDisplay<V> constructor

MultiSelectChipDisplay<V>({
  1. List<MultiSelectItem<V>?>? items,
  2. dynamic onTap(
    1. V
    )?,
  3. Color? chipColor,
  4. Alignment? alignment,
  5. BoxDecoration? decoration,
  6. TextStyle? textStyle,
  7. Color? colorator(
    1. V
    )?,
  8. Icon? icon,
  9. ShapeBorder? shape,
  10. bool scroll = false,
  11. HorizontalScrollBar? scrollBar,
  12. double? height,
  13. double? chipWidth,
})

Implementation

MultiSelectChipDisplay({
  this.items,
  this.onTap,
  this.chipColor,
  this.alignment,
  this.decoration,
  this.textStyle,
  this.colorator,
  this.icon,
  this.shape,
  this.scroll = false,
  this.scrollBar,
  this.height,
  this.chipWidth,
}) {
  this.disabled = false;
}