isInThisMonth property

bool get isInThisMonth

checks isInThisMonth

Implementation

bool get isInThisMonth {
  if (this == null) return false;
  final now = DateTime.now();
  return this!.month == now.month && this!.year == now.year;
}