Point<T> bottomRight

Source

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

Source

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