nextMonth property

DateTime get nextMonth

The next month that can be displayed (two months can be displayed at the same time).

Implementation

DateTime get nextMonth =>
    DateTime(currentMonth.year, currentMonth.month + 1, 1);