keyboardType method

NikuTextField keyboardType(
  1. TextInputType keyboardType
)

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

Equivalent to

TextFormField(
  keyboardType: input
)

Implementation

NikuTextField keyboardType(TextInputType keyboardType) {
  this._keyboardType = keyboardType;

  return this;
}