round method
Returns a copy of this rounded to the nearest unit
and value
.
Contract
Throws a RangeError if value <= 0
.
Example
LocalTime(12, 31, 59).round(TimeUnit.minutes, 5); // 12:30
LocalTime(12, 34, 59).round(TimeUnit.minutes, 5); // 12:35
Implementation
@Possible({RangeError})
@useResult LocalTime round(TimeUnit unit, int value) => LocalTime._(_native.round(unit, value));