Edit24 constructor

Edit24({
  1. String hint = "",
  2. required TextEditingController controller,
  3. TextInputType type = TextInputType.text,
  4. Color color = Colors.black,
  5. double radius = 0,
  6. dynamic onChangeText(
    1. String
    )?,
  7. TextStyle style = const TextStyle(),
  8. double height = 40,
})

Implementation

Edit24({this.hint = "", required this.controller, this.type = TextInputType.text, this.color = Colors.black, this.radius = 0,
  this.onChangeText, this.style = const TextStyle(), this.height = 40});