isBetween method

bool isBetween(
  1. String from,
  2. String to
)

Whether this date falls within the range [from, to] exclusively.

Implementation

bool isBetween(String from, String to) => dates.isBetween(this, from, to);