The number of font pixels for each logical pixel.
For example, if the text scale factor is 1.5, text will be 50% larger than the specified font size.
Source
double get textScaleFactor => _textScaleFactor;
Source
set textScaleFactor(double value) { assert(value != null); if (_textScaleFactor == value) return; _textScaleFactor = value; _paragraph = null; _needsLayout = true; }