用法
DateTime toUtc()
如果它已经是 UTC,则返回 this。否则,此方法等效于:
DateTime.fromMicrosecondsSinceEpoch(microsecondsSinceEpoch,isUtc: true)
DateTime toUtc() {
if (isUtc) return this;
return DateTime._withValue(_value, isUtc: true);
}
DateTime toUtc()
如果它已经是 UTC,则返回 this。否则,此方法等效于:
DateTime.fromMicrosecondsSinceEpoch(microsecondsSinceEpoch,isUtc: true)
DateTime toUtc() {
if (isUtc) return this;
return DateTime._withValue(_value, isUtc: true);
}
版权声明:本文内容由TeHub注册用户自发贡献,版权归原作者所有,TeHub社区不拥有其著作权,亦不承担相应法律责任。 如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
评论(0)