addDays method

void addDays(
  1. int days
)

Add days to date

Implementation

void addDays(int days) => value = value.add(Duration(days: days));