semiBold static method

TextStyle semiBold({
  1. Color? color,
  2. double? fs,
  3. double? height,
})

Implementation

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