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