isThisMonth method

bool isThisMonth()

Implementation

bool isThisMonth() {
  final Jalali now = Jalali.now();
  return year == now.year && month == now.month;
}