isCurrentMonth method

bool isCurrentMonth(
  1. int year,
  2. int month
)

Implementation

bool isCurrentMonth(int year, int month) {
  return (year == currentYear && month == currentMonth);
}