helper static method

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

Fonte helper Font family: Open Sans Font size: 12 Font weight: 400 Height: 133,33%

Implementation

@Deprecated('Use small instead')
static TextStyle helper({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'OpenSans',
    fontSize: 12.0,
    fontWeight: FontWeight.w400,
    height: 1.3333,
    package: package,
  );
}