Point<T> topLeft

Source

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

Source

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