difference method

int difference(
  1. Date other
)

////////////////////////////////// OPERATIONS Return the difference in days

Implementation

/// Return the difference in days
int difference(Date other) => asDateTime.difference(other.asDateTime).inDays;