portraitWidth property

double get portraitWidth

Implementation

double get portraitWidth {
  if (_orientation == Orientation.portrait) {
    return screenWidth;
  }
  return min(screenWidth, screenHeight);
}