Size constructor

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

Implementation

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