EndDateRecurrenceRange.withStartAndEndDates constructor

EndDateRecurrenceRange.withStartAndEndDates(
  1. DateTime? startDate,
  2. DateTime? endDate
)
Initializes a new instance of the The start date. The end date.

Implementation

EndDateRecurrenceRange.withStartAndEndDates(
    DateTime? startDate, DateTime? endDate)
    : super.withStartDate(startDate) {
  this.endDate = endDate;
}