Size constructor

const Size(
  1. double width,
  2. double height
)

Creates a Size with the given width and height.

Implementation

const Size(super.width, super.height);