hintText method

NikuTextField hintText(
  1. String helperText
)

Hint text

Equivalent to

TextFieldForm(
  decoration: InputDecoration(
    hintText: input
  )
)

Implementation

NikuTextField hintText(String helperText) {
  this._input_hintText = helperText;

  return this;
}