ModulaChipsInput constructor

const ModulaChipsInput({
  1. Key? key,
  2. String? label,
  3. String? hintText,
  4. List<String> initialChips = const [],
  5. void onChanged(
    1. List<String>
    )?,
  6. String? validator(
    1. String
    )?,
  7. bool readOnly = false,
  8. ChipStyle? chipStyle,
  9. InputDecoration? textFieldDecoration,
  10. bool showTextField = true,
})

Implementation

const ModulaChipsInput({
  super.key,
  this.label,
  this.hintText,
  this.initialChips = const [],
  this.onChanged,
  this.validator,
  this.readOnly = false,
  this.chipStyle,
  this.textFieldDecoration,
  this.showTextField = true,
});