isCurrentYear method

bool isCurrentYear(
  1. int year
)

Implementation

bool isCurrentYear(int year) {
  return year == currentYear;
}