maxLengthEnforced method

NikuTextField maxLengthEnforced(
  1. bool enforced
)

If true, prevents the field from allowing more than maxLength characters

Equivalent to

TextFormField(
  maxLengthEnforced: input
)

Implementation

NikuTextField maxLengthEnforced(bool enforced) {
  this._maxLengthEnforced = enforced;

  return this;
}