fontSize method

NikuTextField fontSize(
  1. double fontSize
)

Set size of text

Equivalent to

TextStyle(fontSize: input)

Implementation

NikuTextField fontSize(double fontSize) {
  this._base_fontSize = fontSize;

  return this;
}