bodySemiBold static method

  1. @Deprecated('Use bodyBold instead')
TextStyle bodySemiBold({
  1. Color? color,
})

Fonte body-semi-bold Font family: Open Sans Font size: 14 Font weight: 600 Height: 142,857%

Implementation

@Deprecated('Use bodyBold instead')
static TextStyle bodySemiBold({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'OpenSans',
    fontSize: 14.0,
    fontWeight: FontWeight.w600,
    height: 1.42857,
    package: package,
  );
}