textScaleFactor method

NikuSelectableText textScaleFactor(
  1. double textScaleFactor
)

The number of font pixels for each logical pixel

Equivalnet to

Text(textScaleFactor: input)

Implementation

NikuSelectableText textScaleFactor(double textScaleFactor) {
  _textScaleFactor = textScaleFactor;

  return this;
}