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