isBefore method

bool isBefore(
  1. Time other
)

Whether or not this Time object is before other.

Implementation

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