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