ceil method

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

Ceils this Time to the nearest value.

Implementation

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