enabledBorder method

NikuTextField enabledBorder(
  1. InputBorder border
)

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

Equivalent to

TextFormField(
  decoration: InputDecoration(
    enabledBorder: input
  )
)

Implementation

NikuTextField enabledBorder(InputBorder border) {
  this._input_enabledBorder = border;

  return this;
}