operator < method

bool operator <(
  1. dynamic other
)

Implementation

bool operator <(other) {
  if (other is! AdeptDateTime) return false;
  return getDateTimeMillis() < other.getDateTimeMillis();
}