Size constructor

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

Implementation

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