min method

Duration min(
  1. Duration other
)

Get the minimum of two durations

Implementation

Duration min(Duration other) => this < other ? this : other;