addMonths method

DateTime addMonths(
  1. int count
)

Adds the specified number of months to this DateTime.

Implementation

DateTime addMonths(int count) {
  return DateTimeCalculator.addMonths(this, count);
}