suffixFontSize method

NikuTextField suffixFontSize(
  1. double fontSize
)

Set size of text

Equivalent to

TextStyle(fontSize: input)

Implementation

NikuTextField suffixFontSize(double fontSize) {
  this._suffix_fontSize = fontSize;

  return this;
}