Time.sum constructor

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

Constructs a Time representing the sum of any number of other Times.

Implementation

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