isBetween method

bool isBetween(
  1. DateTime start,
  2. DateTime end
)

Checks if this date is between start and end (inclusive)

Implementation

bool isBetween(DateTime start, DateTime end) {
  return DateComparisons.isBetween(this, start, end);
}