previousMonth method
void
previousMonth()
Moves the calendar back by one month.
Implementation
void previousMonth() {
final current = displayedMonth;
setMonth(DateTime(current.year, current.month - 1));
}
Moves the calendar back by one month.
void previousMonth() {
final current = displayedMonth;
setMonth(DateTime(current.year, current.month - 1));
}