subtractOneMonth method

DateTime subtractOneMonth()

Implementation

DateTime subtractOneMonth() {
  return DateTime(year, month - 1, day);
}