End.until constructor

End.until(
  1. Duration elapsedTime
)

Bounds the recurrence rule in an inclusive manner to the associated start date of this rule plus elapsedTime.

Implementation

factory End.until(Duration elapsedTime) =>
    End(EndType.UNTIL, elapsedTime: elapsedTime);