previousMonth method

void previousMonth()

Moves the calendar back by one month.

Implementation

void previousMonth() {
  final current = displayedMonth;
  setMonth(DateTime(current.year, current.month - 1));
}