isLandscape method

bool isLandscape()

Returns true if the orientation is portrait.

Implementation

bool isLandscape() {
  return [
    NativeDeviceOrientation.landscapeLeft,
    NativeDeviceOrientation.landscapeRight
  ].contains(this);
}