isAfter method

bool isAfter([
  1. String? reference
])

Whether this date is after reference.

When reference is omitted, compares against the current date/time (now).

Implementation

bool isAfter([String? reference]) => dates.isAfter(this, reference);