用法
DateTime toLocal()
在本地时区返回此 DateTime 值。
如果它已经在本地时区,则返回 this。否则,此方法等效于:
DateTime.fromMicrosecondsSinceEpoch(microsecondsSinceEpoch,
isUtc: false)
列子
DateTime toLocal() {
if (isUtc) {
return DateTime._withValue(_value, isUtc: false);
}
return this;
}
评论(0)