disabledBorder method
The border to display when the InputDecorator is disabled and is not showing an error
Equivalent to
TextFormField(
decoration: InputDecoration(
disabledBorder: input
)
)
Implementation
NikuTextField disabledBorder(InputBorder border) {
this._input_disabledBorder = border;
return this;
}