isThisMonth method

bool isThisMonth([
  1. DateTime? dateTime
])

True if the specified time or the current time is the same month.

Pass the date and time you want to compare to dateTime. If it is not passed, the current date and time is used.

Implementation

bool isThisMonth([DateTime? dateTime]) {
  dateTime ??= DateTime.now();
  return year == dateTime.year && month == dateTime.month;
}