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

Source

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