addMonth method

DateTime addMonth([
  1. int months = 1
])

Implementation

DateTime addMonth([int months = 1]) => this.copy(month: this.month + months);