addMin method

void addMin(
  1. double min
)

add min to the date

Implementation

void addMin(double min) {
  _date += (min / MIN_PER_DAY);
}