isAfter method

bool isAfter(
  1. Time other
)

Whether or not this Time object is after other.

Implementation

bool isAfter(Time other) => _dateTime.isAfter(other._dateTime);