getSecondaryCaptionTextStyle method

TextStyle getSecondaryCaptionTextStyle(
  1. BuildContext context
)

Implementation

TextStyle getSecondaryCaptionTextStyle(BuildContext context) {
  return Theme.of(context).textTheme.bodySmall!.copyWith(
        color: getTertiaryLabelColor(context),
        fontWeight: kFastFontWeightMedium,
        fontSize: kFastFontSize12,
      );
}