small static method

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

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

Implementation

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