1. reflectable
void prevMonth([_, __])

Source

@reflectable
void prevMonth([_,__]) {
  currentDate = currentDate.subtract(new Duration(days:currentDate.day));
  currentDate = currentDate.subtract(new Duration(days:currentDate.day-1));
}