titleMedium property

TextStyle get titleMedium

Middle size of the title styles.

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

Implementation

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