round method

T round(
  1. int value,
  2. TimeUnit unit
)

Rounds this DateTime to the nearest value.

Implementation

T round(int value, TimeUnit unit) => _adjust(value, unit, math.round);