isAfter method
Returns true if this is after other
.
final foo = OffsetTime(Offset(8), 12); // 12:00+08:00
final bar = OffsetTime(Offset(-8), 12); // 12:00-08:00
print(bar.isAfter(foo)); // true
Implementation
bool isAfter(OffsetTime other) => _instant > other._instant;