isTabletLandscape static method

bool isTabletLandscape(
  1. BuildContext context
)

Implementation

static bool isTabletLandscape(BuildContext context) {
  return isTablet(context) && isLandscape(context);
}