Dimension constructor

Dimension({
  1. double? magnitude,
  2. String? unit,
})

Implementation

Dimension({
  this.magnitude,
  this.unit,
});