Duration abs( )

Returns a new Duration representing the absolute value of this Duration.

The returned Duration has the same length as this one, but is always positive.

Source

/**
 * Returns a new `Duration` representing the absolute value of this
 * `Duration`.
 *
 * The returned `Duration` has the same length as this one, but is always
 * positive.
 */
Duration abs() => new Duration._microseconds(_duration.abs());