You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ignore previous timestamp transitions and use only the current system timestamp in local date and time so that the behavior is correct on Windows and Linux
820
+
final nowDt =DateTime.now();
821
+
var baseDt =DateTime(2000);
822
+
if (baseDt.timeZoneOffset != nowDt.timeZoneOffset) {
823
+
final difference = baseDt.timeZoneOffset - nowDt.timeZoneOffset;
0 commit comments