helperText method

NikuTextField helperText(
  1. String helperText
)

Helper text

Equivalent to

TextFieldForm(
  decoration: InputDecoration(
    helperText: input
  )
)

Implementation

NikuTextField helperText(String helperText) {
  this._input_helperText = helperText;

  return this;
}