SimpleSelectText constructor

SimpleSelectText({
  1. Key? key,
  2. required dynamic item,
  3. required Function onChange,
  4. required int position,
  5. Map errorMessages = const {},
  6. Map validations = const {},
  7. Map decorations = const {},
  8. Map keyboardTypes = const {},
  9. SingleValueDropDownController? dropDownController,
  10. bool isEditable = true,
  11. String? validatorMsg,
  12. bool isMandatory = false,
  13. bool enableSearch = false,
})

Implementation

SimpleSelectText({
  Key? key,
  required this.item,
  required this.onChange,
  required this.position,
  this.errorMessages = const {},
  this.validations = const {},
  this.decorations = const {},
  this.keyboardTypes = const {},
  this.dropDownController,
  this.isEditable = true,
  this.validatorMsg,
  this.isMandatory=false,
  this.enableSearch = false
}) : super(key: key);