normalized property

IRect get normalized

Implementation

IRect get normalized => IRect(
      math.min(x0, x1),
      math.min(y0, y1),
      math.max(x0, x1),
      math.max(y0, y1),
    );