getSecondaryOverlineTextStyle method

TextStyle getSecondaryOverlineTextStyle(
  1. BuildContext context
)

Implementation

TextStyle getSecondaryOverlineTextStyle(BuildContext context) {
  return Theme.of(context).textTheme.labelSmall!.copyWith(
        color: getTertiaryLabelColor(context),
        fontWeight: kFastFontWeightMedium,
        fontSize: kFastFontSize10,
      );
}