floor method

Time floor(
  1. int value,
  2. TimeUnit unit
)

Floors this Time to the nearest value.

Implementation

Time floor(int value, TimeUnit unit) => _adjust(value, unit, math.floor);