focusedBorder method

NikuTextField focusedBorder(
  1. InputBorder border
)

The border to display when the InputDecorator has the focus and is not showing an error

Equivalent to

TextFormField(
  decoration: InputDecoration(
    focusedBorder: input
  )
)

Implementation

NikuTextField focusedBorder(InputBorder border) {
  this._input_focusedBorder = border;

  return this;
}