isOutsideRange method

bool isOutsideRange(
  1. Date start,
  2. Date end
)

Check if the date is out side start and end

Implementation

bool isOutsideRange(Date start, Date end) => !isWithinRange(start, end);