labelBold static method

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

Font Label bold Font family: Open Sans Font size: 16 Font weight: 700 Height: 150%

Implementation

static TextStyle labelBold({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'OpenSans',
    fontSize: 16.0,
    fontWeight: FontWeight.w700,
    height: 1.5,
    package: package,
  );
}