getSecondaryLabelColor method

Color getSecondaryLabelColor(
  1. BuildContext context
)

Implementation

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

  return themeBloc.currentState.brightness == Brightness.light
      ? kFastLightSecondaryLabelColor
      : kFastDarkSecondaryLabelColor;
}