subtractMonths method

DateTime subtractMonths(
  1. int count
)

Subtracts the specified number of months from this DateTime.

Implementation

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