isInvertedColorsEnabled static method

bool isInvertedColorsEnabled(
  1. BuildContext context
)

Check if inverted colors are enabled.

Implementation

static bool isInvertedColorsEnabled(BuildContext context) {
  return MediaQuery.of(context).invertColors;
}