isInFuture method

bool isInFuture()

Check if the DateTime is in the future

Implementation

bool isInFuture() {
  return isAfter(DateTime.now());
}