SelectPickerInputNoBorder constructor

const SelectPickerInputNoBorder({
  1. Key? key,
  2. required TextEditingController controller,
  3. required String? varErro,
  4. required SelectPickerInputSearchStyle selectPickerInputSearchStyle,
  5. dynamic onChangeText(
    1. String
    )?,
  6. required String? label,
  7. Color? labelColor,
  8. dynamic onSubmit(
    1. String
    )?,
  9. double? radius,
  10. TextInputType? textInputType,
  11. TextCapitalization? textCapitalization,
  12. FocusNode? focus,
  13. String? hint,
  14. List<TextInputFormatter>? formatter,
  15. Color? focusedColor,
  16. Color? backgroundColor,
})

Implementation

const SelectPickerInputNoBorder({
  Key? key,
  required this.controller,
  required this.varErro,
  required this.selectPickerInputSearchStyle,
  this.onChangeText,
  required this.label,
  this.labelColor,
  this.onSubmit,
  this.radius,
  this.textInputType,
  this.textCapitalization,
  this.focus,
  this.hint,
  this.formatter,
  this.focusedColor,
  this.backgroundColor,
}) : super(key: key);