titleSmall property

TextStyle get titleSmall

Smallest of the title styles.

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

Implementation

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