phoneKeyboard method

NikuTextField phoneKeyboard()

The type of information for which to optimize the text input control

Using TextInputType.phone

Equivalent to

TextFormField(
  keyboardType: TextInputType.phone
)

Implementation

NikuTextField phoneKeyboard() {
  this._keyboardType = TextInputType.phone;

  return this;
}