operator >= method

bool operator >=(
  1. DateTime other
)

比较时间

Implementation

bool operator >=(DateTime other) =>
    this.millisecondsSinceEpoch >= other.millisecondsSinceEpoch;