rFont method

double rFont({
  1. double? maxFontSize,
})

Implementation

double rFont({
  double? maxFontSize,
}) {
  return ResponsiveSizeUtils.responsiveFont(
    fontSize: this,
    maxFontSize: maxFontSize,
  );
}