SimpleSelectText constructor
SimpleSelectText({
- Key? key,
- required dynamic item,
- required Function onChange,
- required int position,
- Map errorMessages = const {},
- Map validations = const {},
- Map decorations = const {},
- Map keyboardTypes = const {},
- SingleValueDropDownController? dropDownController,
- bool isEditable = true,
- String? validatorMsg,
- bool isMandatory = false,
- 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);