titleLarge property

TextStyle get titleLarge

Largest of the title styles.

Titles are smaller than headline styles and should be used for shorter, medium-emphasis text.

Implementation

TextStyle get titleLarge => TextStyle(
      fontSize: 20,
      fontWeight: FontWeight.w500,
      height: 24 / 20,
      fontFamily: fontFamily,
      color: textColor,
    );