VChipsSelection constructor

const VChipsSelection({
  1. Key? key,
  2. required String chipLabel,
  3. required void onSelected(
    1. bool
    )?,
  4. bool isSelected = false,
  5. bool isReadOnly = false,
  6. bool isDisabled = false,
  7. VExt? vExt,
  8. VChipSelectionStyle? style,
})

Implementation

const VChipsSelection({
  Key? key,
  required this.chipLabel,
  required this.onSelected,
  this.isSelected = false,
  this.isReadOnly = false,
  this.isDisabled = false,
  this.vExt,
  this.style,
}) : super(key: key);