byMonth property

List<int>? byMonth

Implementation

List<int>? get byMonth => _byMonth;
void byMonth=(List<int>? byMonth)

Implementation

set byMonth(List<int>? byMonth) {
  assert(byMonth == null ||
      (byMonth.isNotEmpty &&
          byMonth.every((element) => element > 0 && element <= 12)));
  _byMonth = byMonth;
}