maxLength method

NikuTextField maxLength(
  1. int maxLength
)

The maximum number of characters (Unicode scalar values) to allow in the text field

Equivalent to

TextFormField(
  expands: input
)

Implementation

NikuTextField maxLength(int maxLength) {
  this._maxLength = maxLength;

  return this;
}