isOnPortraitMode static method

bool isOnPortraitMode(
  1. CameraOrientations orientation
)

Implementation

static bool isOnPortraitMode(CameraOrientations orientation) {
  return (orientation == CameraOrientations.PORTRAIT_DOWN ||
      orientation == CameraOrientations.PORTRAIT_UP);
}