isAfterOrSame method

bool isAfterOrSame(
  1. DateTime other, {
  2. bool includeTime = false,
})

Returns true if this is after os is the same as other.

Implementation

bool isAfterOrSame(DateTime other, {bool includeTime = false}) {
  return other.isBeforeOrSame(this, includeTime: includeTime);
}