isInverse static method

bool isInverse(
  1. BuildContext context
)

True when the nearest AppMenuSurfaceStyle requests an inverse surface; false (light) when none is present.

Implementation

static bool isInverse(BuildContext context) =>
    maybeOf(context)?.inverse ?? false;