EditText constructor
const
EditText({
- Key? key,
- ValueChanged<
String> ? onChanged, - ValueChanged<
bool> ? focusChanged, - TextStyle? textStyle,
- TextEditingController? editingController,
- bool obscureText = false,
- bool autofocus = false,
- TextInputType? keyboardType,
- 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);