isAnyAxisInverted method

bool isAnyAxisInverted()

Returns true if either the left or the right or both axes are inverted.

@return

Implementation

bool isAnyAxisInverted() {
  if (_axisLeft!.inverted) return true;
  if (_axisRight!.inverted) return true;
  return false;
}