isEmpty property

bool isEmpty

Determines whether or not this GRect object is empty.

Implementation

bool get isEmpty {
  return width <= 0 || height <= 0;
}