nextMonth method

DateTime nextMonth()

Create a new date with next month values.

Implementation

DateTime nextMonth() => _copyWith(month: month + 1);