isLandscape property

bool get isLandscape

Implementation

bool get isLandscape {
  Size s = size;
  return s.width > s.height;
}