Dimension constructor

Dimension({
  1. String? kind,
  2. String? name,
})

Implementation

Dimension({
  this.kind,
  this.name,
});