hintMaxLines method

NikuTextField hintMaxLines(
  1. int maxLines
)

Maximum line of hint text

Equivalent to

TextFieldForm(
  decoration: InputDecoration(
    hintMaxLinesText: input
  )
)

Implementation

NikuTextField hintMaxLines(int maxLines) {
  this._input_hintMaxLines = maxLines;

  return this;
}