min static method

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

Implementation

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