isLongBottomSheet static method

bool isLongBottomSheet(
  1. Orientation orientation
)

Implementation

static bool isLongBottomSheet(Orientation orientation) {
  return getPlatformType() == PlatformType.mobile &&
      orientation == Orientation.landscape;
}