Point<T> size

Source

Point<T> get size => new Point<T>(width, height);
void size=(Point<T> point)

Source

set size(Point<T> point) {
  width = point.x;
  height = point.y;
}