addDay method

void addDay(
  1. double day
)

add day to the date

Implementation

void addDay(double day) {
  _date += day;
}