getNonResizedFontSize method

double? getNonResizedFontSize(
  1. BuildContext context
)

Get super font size. This returns the original font size before applying any scaling calculations.

Implementation

double? getNonResizedFontSize(BuildContext context) {
  return super.getFontSize(context);
}