toUtc 方法

DateTime toUtc()

返回此 DateTime 值的 UTC 时区。

如果此 DateTime 已经在 UTC,则返回此 DateTime。否则此方法等同于

DateTime.fromMicrosecondsSinceEpoch(microsecondsSinceEpoch,
                                    isUtc: true)

实现

DateTime toUtc() {
  if (isUtc) return this;
  return _withUtc(isUtc: true);
}