Size constructor

const Size({
  1. required double height,
  2. required double width,
})

Creates Size from width and height.

Implementation

const Size({
  required this.height,
  required this.width,
});