addMonths method

DateTime addMonths(
  1. int months
)

Implementation

DateTime addMonths(int months) => add(Duration(days: months * 30));