bottomLeft method

Offset bottomLeft (Offset origin)

The offset to the intersection of the bottom and left edges of the rectangle described by the given offset (which is interpreted as the top-left corner) and this size.

See also Rect.bottomLeft.

Implementation

Offset bottomLeft(Offset origin) => new Offset(origin.dx, origin.dy + height);