Skip to content

Instantly share code, notes, and snippets.

@0xabdou
Last active March 18, 2020 20:00
Show Gist options
  • Save 0xabdou/4cf05e89401745159f36081f122efd57 to your computer and use it in GitHub Desktop.
Save 0xabdou/4cf05e89401745159f36081f122efd57 to your computer and use it in GitHub Desktop.
void main() {
final d = DateTime.now();
final ms = d.millisecondsSinceEpoch;
final d1 = DateTime.fromMillisecondsSinceEpoch(ms);
print(d);
print(d1);
print(d1 == d);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment