isAfter method

bool isAfter(
  1. AnyDate other
)

Implementation

bool isAfter(AnyDate other) {
  assert(
    other is DateTime || other is SlickDateTime,
    'Argument must be DateTime or SlickDateTime',
  );
  return _inner.isAfter(_unwrap(other));
}