Quantity constructor

Quantity({
  1. String? decimals,
  2. String? numeric,
})

Implementation

Quantity({
  this.decimals,
  this.numeric,
});