next method

void next()

Displays the calendar for the next month.

次の月のカレンダーを表示します。

Implementation

void next() {
  for (final listener in _nextListeners) {
    listener();
  }
}