maxLengthEnforced method
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;
}