Point<T> bottomLeft

Source

@override
Point<T> get bottomLeft => new Point<T>(left, bottom);
void bottomLeft=(Point<T> point)

Source

set bottomLeft(Point<T> point) {
  width = width + left - point.x;
  height = point.y - top;
  left = point.x;
}