getDaysInMonth method

int getDaysInMonth()

Returns the number of days in the month of this DateTime.

Implementation

int getDaysInMonth() {
  return DateTimeCalculator.getDaysCountInMonth(year, month);
}