addDays method

Date addDays(
  1. int amount
)

Add days

Implementation

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