getTertiaryBackgroundColor method

Color getTertiaryBackgroundColor(
  1. BuildContext context
)

Implementation

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

  return themeBloc.currentState.brightness == Brightness.light
      ? kFastLightTertiaryBackgroundColor
      : kFastDarkTertiaryBackgroundColor;
}