isSmallScreenAndOnLandscape static method
Implementation
static bool isSmallScreenAndOnLandscape({required BuildContext context}) {
if (isLandscape(context: context) &&
getDeviceType(context) == DeviceScreensType.Mobile) {
return true;
}
return false;
}