errorBorder method

NikuTextField errorBorder(
  1. InputBorder border
)

The shape of the border to draw aroudn the decorations' container

Equivalent to

TextFormField(
  decoration: InputDecoration(
    errorBorder: input
  )
)

Implementation

NikuTextField errorBorder(InputBorder border) {
  this._input_errorBorder = border;

  return this;
}