asPassword method
Should text be obscure eg. password field
Equivalent to
TextFormField(
obscureTextFormField: true,
)
Implementation
NikuTextField asPassword() {
_obscureText = true;
allowCopy(false);
return this;
}
Should text be obscure eg. password field
Equivalent to
TextFormField(
obscureTextFormField: true,
)
NikuTextField asPassword() {
_obscureText = true;
allowCopy(false);
return this;
}