isBefore method

bool isBefore(
  1. Date other
)

Checks if this is before other.

Implementation

bool isBefore(final Date other) => this < other;