isBefore method

bool isBefore(
  1. Time other
)

Checks if this time instance is chronologically before other.

Implementation

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