getStepTimeAfterInclusive method
Implementation
DateTime getStepTimeAfterInclusive(DateTime time, int tickIncrement) {
final boundedStart = getStepTimeBeforeInclusive(time, tickIncrement);
if (boundedStart.isAtSameMomentAs(time)) {
return boundedStart;
}
return getNextStepTime(boundedStart, tickIncrement);
}