Mass.sum constructor

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

Constructs a Mass representing the sum of any number of other Masses.

Implementation

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