EditText constructor

const EditText({
  1. Key? key,
  2. ValueChanged<String>? onChanged,
  3. ValueChanged<bool>? focusChanged,
  4. TextStyle? textStyle,
  5. TextEditingController? editingController,
  6. bool obscureText = false,
  7. bool autofocus = false,
  8. TextInputType? keyboardType,
  9. InputDecoration? decoration,
})

Implementation

const EditText({
  Key? key,
  this.onChanged,
  this.focusChanged,
  this.textStyle,
  this.editingController,
  this.obscureText = false,
  this.autofocus = false,
  this.keyboardType,
  this.decoration,
}) : super(key: key);