Volume constructor

Volume(
  1. num value,
  2. String unitSymbol
)

Constructs Volume with the value and the unit

Implementation

Volume(num value, String unitSymbol)
    : super(value, unitSymbol, _V._dimension);