VChipsRemovable constructor

const VChipsRemovable({
  1. Key? key,
  2. required String chipLabel,
  3. required dynamic onDeleted()?,
  4. Widget? leading,
  5. bool isReadOnly = false,
  6. bool isDisabled = false,
  7. dynamic onPressed()?,
  8. ChipsRemovableType chipsRemovableType = ChipsRemovableType.standard,
  9. VExt? vExt,
  10. VChipRemovableStyle? style,
})

Implementation

const VChipsRemovable({
  Key? key,
  required this.chipLabel,
  required this.onDeleted,
  this.leading,
  this.isReadOnly = false,
  this.isDisabled = false,
  this.onPressed,
  this.chipsRemovableType = ChipsRemovableType.standard,
  this.vExt,
  this.style,
}) : super(key: key);