min static method

Time min(
  1. Time x,
  2. Time y
)

Implementation

static Time min(Time x, Time y) => x < y ? x : y;