nextMonth property

DateTime get nextMonth

Implementation

DateTime get nextMonth {
  return month == 12 ? DateTime(year + 1, 1) : DateTime(year, month + 1);
}