b method
The shape of the border to draw around the decoration's container
Equivalent to
TextFormField(
decoration: InputDecoration(
border: input
)
)
Implementation
NikuTextField b(InputBorder border) {
_input_border = border;
_input_enabledBorder = border;
_input_disabledBorder = border;
_input_focusedBorder = border;
_input_errorBorder = border;
_input_focusedErrorBorder = border;
return this;
}