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