toUtc方法
返回此DateTime值在UTC时区的时间。
如果它已经处于UTC,则返回此。否则此方法等价于
DateTime.fromMicrosecondsSinceEpoch(microsecondsSinceEpoch,
isUtc: true)
实现
DateTime toUtc() {
if (isUtc) return this;
return DateTime._withValue(_value, isUtc: true);
}