isHighContrastEnabled static method

bool isHighContrastEnabled(
  1. BuildContext context
)

Check if high contrast mode is enabled.

Implementation

static bool isHighContrastEnabled(BuildContext context) {
  return MediaQuery.of(context).highContrast;
}