hasNoDragOffset method

bool hasNoDragOffset()

Returns true if both drag offsets (x and y) are zero or smaller.

@return

Implementation

bool hasNoDragOffset() {
  return _transOffsetX! <= 0 && _transOffsetY! <= 0;
}