Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been learning Dart, but I don't know how to generate a timestamp. I have tried this:

void main() {
  print((new Date()).millisecondsSinceEpoch);
}

Thanks to the IDE I was able to get this far, but I'm getting a confusing error:

Exception: No such method: 'Date'

Help?

share|improve this question

1 Answer

up vote 3 down vote accepted

You almost had it right. What you were missing is that you did not use a named constructor:

void main() {
  print(new Date.now().millisecondsSinceEpoch);
}

Gives:

1351441456747

See the API documentation for more: http://api.dartlang.org/docs/bleeding_edge/dart_core/Date.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.