bottomLeft property

  1. @override
Point<T> bottomLeft

Implementation

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

Implementation

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