addDays method

DateTime addDays(
  1. int amount
)

Adds the specified number of days to this DateTime.

Implementation

DateTime addDays(int amount) => add(Duration(days: amount));