isAfter method

bool isAfter(
  1. Date other
)

Checks if this is after other.

Implementation

bool isAfter(final Date other) => this > other;