addressKeyboard method
The type of information for which to optimize the text input control
Using TextInputType.streetAddress
Equivalent to
TextFormField(
keyboardType: TextInputType.streetAddress
)
Implementation
NikuTextField addressKeyboard() {
_keyboardType = TextInputType.streetAddress;
return this;
}