isAfter method

bool isAfter(
  1. Time time, {
  2. bool orSame = false,
})

////////////////////////////////// COMPARISON Is the Time after another time

Implementation

/// Is the `Time` after another [time]
bool isAfter(Time time, {bool orSame = false}) {
  return orSame ? this >= time : this > time;
}