addMonth method

DateTime addMonth(
  1. int count
)

Implementation

DateTime addMonth(int count) {
  return DateTime(year, month + count, day);
}