max method

DateTime max(
  1. DateTime that
)

Implementation

DateTime max(DateTime that) =>
    (millisecondsSinceEpoch > that.millisecondsSinceEpoch) ? this : that;