toUtc方法

DateTime toUtc()

返回此DateTime值在UTC时区的时间。

如果它已经处于UTC,则返回。否则此方法等价于

DateTime.fromMicrosecondsSinceEpoch(microsecondsSinceEpoch,
                                    isUtc: true)

实现

DateTime toUtc() {
  if (isUtc) return this;
  return DateTime._withValue(_value, isUtc: true);
}