Size constructor

Size({
  1. int? height,
  2. int? width,
})

Implementation

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