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() {
this._keyboardType = TextInputType.streetAddress;
return this;
}