isDesktopLandscape static method

bool isDesktopLandscape(
  1. BuildContext context
)

Implementation

static bool isDesktopLandscape(BuildContext context) {
  return isDesktop(context) && isLandscape(context);
}