plusDays method
Adds the specified number of days.
Example:
final today = ZonedDateTime.now(ZoneId.of('Europe/London'));
final nextWeek = today.plusDays(7);
final tomorrow = today.plusDays(1);
Implementation
ZonedDateTime plusDays(int days) => plus(Duration(days: days));