byMonthDay property

List<int>? byMonthDay

Implementation

List<int>? get byMonthDay => _byMonthDay;
void byMonthDay=(List<int>? byMonthDay)

Implementation

set byMonthDay(List<int>? byMonthDay) {
  assert(byMonthDay == null ||
      (byMonthDay.isNotEmpty &&
          byMonthDay.every((element) => element > 0 && element <= 31)));
  _byMonthDay = byMonthDay;
}