ElectricCharge constructor

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

Constructs ElectricCharge with the value and the unit

Implementation

ElectricCharge(num value, String unitSymbol)
    : super(value, unitSymbol, _EC._dimension);