ceil method
Returns a copy of this ceiled to the nearest unit
and value
.
Contract
Throws a RangeError if value <= 0
.
Example
LocalDate(2023, 4, 15).ceil(DateUnit.months, 6); // 2023-06-01
LocalDate(2023, 8, 15).ceil(DateUnit.months, 6); // 2023-12-01
Implementation
@Possible({RangeError})
@useResult LocalDate ceil(DateUnit unit, int value) => LocalDate._(_native.ceil(unit, value));