label static method

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

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

Implementation

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