fontSmartScale method

double fontSmartScale(
  1. num size
)

Implementation

double fontSmartScale(num size) {
  if (_systemFontScale) {
    return smartScale(size) * _textScaleFactor;
  }
  return smartScale(size) / _textScaleFactor;
}