abs method - Duration class - dart:core library (original) (raw)
Duration abs()
Creates a new Duration representing the absolute length of thisDuration.
The returned Duration has the same length as this one, but is always positive where possible.
Implementation
Duration abs() => Duration._microseconds(_duration.abs());