helperMaxLines method

NikuTextField helperMaxLines(
  1. int maxLines
)

Maximum line of helper text

Equivalent to

TextFieldForm(
  decoration: InputDecoration(
    helperMaxLinesText: input
  )
)

Implementation

NikuTextField helperMaxLines(int maxLines) {
  this._input_helperMaxLines = maxLines;

  return this;
}