addOrRemoveDays method

DateTime addOrRemoveDays(
  1. int days
)

Adds or removes the specified number of days from this DateTime.

Implementation

DateTime addOrRemoveDays(int days) => add(Duration(days: days));