Dimension constructor

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

Implementation

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