Charge.sum constructor

Charge.sum(
  1. Iterable<Charge> parts, {
  2. Precision precision = Precision.max,
})

Constructs a Charge representing the sum of any number of other Charges.

Implementation

Charge.sum(final Iterable<Charge> parts,
    {final Precision precision = Precision.max})
    : super.sum(parts, precision);