hintFontSize method

NikuTextField hintFontSize(
  1. double fontSize
)

Set size of text

Equivalent to

TextStyle(fontSize: input)

Implementation

NikuTextField hintFontSize(double fontSize) {
  this._hint_fontSize = fontSize;

  return this;
}