MonthlyPattern.withStartDateAndIntervalAndDayOfMonth constructor

MonthlyPattern.withStartDateAndIntervalAndDayOfMonth(
  1. TZDateTime startDate,
  2. int interval,
  3. int dayOfMonth
)
Initializes a new instance of the The date and time when the recurrence starts. The number of months between each occurrence. The day of the month when each occurrence happens.

Implementation

MonthlyPattern.withStartDateAndIntervalAndDayOfMonth(
    TZDateTime startDate, int interval, int dayOfMonth)
    : super.withStartDateAndInterval(startDate, interval) {
  this.DayOfMonth = dayOfMonth;
}