isStrictlyWithin method

bool isStrictlyWithin(
  1. Hora start,
  2. Hora end
)

Checks if this date is strictly within a range (exclusive).

Implementation

bool isStrictlyWithin(Hora start, Hora end) =>
    isAfter(start) && isBefore(end);