abs method

  1. @override
Duration abs()
override

Creates a new Duration representing the absolute length of this Duration.

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

Implementation

@override
Duration abs() => value.abs();