border method

NikuTextField border(
  1. InputBorder border
)

The shape of the border to draw around the decoration's container

Equivalent to

TextFormField(
  decoration: InputDecoration(
    border: input
  )
)

Implementation

NikuTextField border(InputBorder border) {
  this._input_border = border;

  return this;
}