atLeast method

Hora atLeast(
  1. Hora min
)

Ensures this date is not before the minimum.

Implementation

Hora atLeast(Hora min) => isBefore(min) ? min : this;