errorMaxLines method

NikuTextField errorMaxLines(
  1. int maxLines
)

Maximum line of helper text

Equivalent to

TextFieldForm(
  decoration: InputDecoration(
    errorMaxLines: input
  )
)

Implementation

NikuTextField errorMaxLines(int maxLines) {
  this._input_errorMaxLines = maxLines;

  return this;
}