getTertiaryLabelColor method

Color getTertiaryLabelColor(
  1. BuildContext context
)

Implementation

Color getTertiaryLabelColor(BuildContext context) {
  final themeBloc = BlocProvider.of<FastThemeBloc>(context);

  return themeBloc.currentState.brightness == Brightness.light
      ? kFastLightTertiaryLabelColor
      : kFastDarkTertiaryLabelColor;
}