RxItemPickerCustomTextField constructor

RxItemPickerCustomTextField({
  1. Key? key,
  2. String? label,
  3. String? hintText,
  4. Widget? prefix,
  5. Widget? prefixIcon,
  6. bool readOnly = false,
  7. Widget suffixIconBuilder(
    1. BuildContext,
    2. TextEditingValue,
    3. Widget?
    )?,
  8. void onChanged(
    1. String
    )?,
  9. void onTap()?,
  10. TextEditingController? controller,
  11. String? initialValue,
})

Implementation

RxItemPickerCustomTextField({
  Key? key,
  this.label,
  this.hintText,
  this.prefix,
  this.prefixIcon,
  this.readOnly = false,
  this.suffixIconBuilder,
  this.onChanged,
  this.onTap,
  TextEditingController? controller,
  this.initialValue,
}) : super(key: key) {
  this.controller = controller ?? TextEditingController();
}