Edit43 constructor

Edit43({
  1. String hint = "",
  2. required TextEditingController controller,
  3. TextInputType type = TextInputType.text,
  4. Color color = Colors.grey,
  5. dynamic onChangeText(
    1. String
    )?,
  6. String text = "",
  7. TextStyle? textStyle,
  8. TextStyle? editStyle,
  9. TextStyle? hintStyle,
  10. Widget? prefixIcon,
})

Implementation

Edit43({this.hint = "", required this.controller, this.type = TextInputType.text, this.color = Colors.grey,
  this.onChangeText, this.text = "", this.textStyle, this.editStyle, this.hintStyle, this.prefixIcon,});