NumberedRecurrenceRange.withStartDate constructor

NumberedRecurrenceRange.withStartDate(
  1. DateTime? startDate,
  2. int numberOfOccurrences
)
Initializes a new instance of the The start date. The number of occurrences.

Implementation

NumberedRecurrenceRange.withStartDate(
    DateTime? startDate, int numberOfOccurrences)
    : super.withStartDate(startDate) {
  this.numberOfOccurrences = numberOfOccurrences;
}