setFontScale static method

void setFontScale(
  1. double scale
)

Implementation

static void setFontScale(double scale) {
  _sunnyText ??= SunnyTextTheme.defaults;
  _sunnyText = _sunnyText!.applyEach((style) {
    return style.apply(fontSizeFactor: scale);
  }).copyWith(fontScale: scale);
}