isCurrentMonth property

bool get isCurrentMonth

Chech if this month is the current month

Implementation

bool get isCurrentMonth {
  var now = DateTime.now();
  return month == now.month && year == now.year;
}