autoFillHints method
A list of strings that helps the autofill service identify the type of this text input
Equivalent to
TextFormField(
autoFillHints: input
)
Implementation
NikuTextField autoFillHints(Iterable<String> autofillHints) {
this._autofillHints = autofillHints;
return this;
}