withTextScale method

CupertinoVisualStyle withTextScale(
  1. double textScaleFactor
)

Implementation

CupertinoVisualStyle withTextScale(double textScaleFactor) {
  return this.copyWith(
      appBarTextStyle:
          appBarTextStyle!.apply(fontSizeFactor: textScaleFactor));
}