smallBold static method

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

Fonte small-bold Font family: Open Sans Font size: 12 Font weight: bold Height: 133,33%

Implementation

static TextStyle smallBold({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'OpenSans',
    fontSize: 12.0,
    fontWeight: FontWeight.bold,
    height: 1.3333,
    package: package,
  );
}