bodyBold static method

TextStyle bodyBold({
  1. Color? color,
})

Font Body Bold Font family: Open Sans Font size: 14 Font weight: 700 Height: 142,857%

Implementation

static TextStyle bodyBold({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'OpenSans',
    fontSize: 14.0,
    fontWeight: FontWeight.w700,
    height: 1.42857,
    package: package,
  );
}