Size constructor

Size(
  1. int width,
  2. int height
)

Implementation

factory Size(int width, int height) => Size.fromXY(width, height);