medium static method
Implementation
static TextStyle medium(
{Color? color,
double? fs,
double? height,
TextDecoration? decoration}) =>
TextStyle(
color: color ?? ThemeHandler.currentTheme.fontPrimaryColor,
fontSize: (fs ?? 14) * resizeW,
fontWeight: FontWeight.w500,
fontFamily: _fontFamily,
height: height,
decoration: decoration,
decorationColor: color,
);