kaddMonth method

DateTime kaddMonth(
  1. int month
)

添加月

Implementation

DateTime kaddMonth(int month) {
  var res = kcopy(month: this.month + month);
  if (day != res.day) res = res.kcopy(day: 0);
  return res;
}