Where can I download offline documentation for Dart?

dart

Solution

You can download a zip of the API docs from https://www.dartlang.org/tools/sdk/archive. (The API Docs link in the Downloads column)

For old versions:

- 1.11: http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-408.pdf

- 2.0.0: https://github.com/chalin/dart-spec-and-grammar/blob/master/doc/dartLangSpec.pdf

Problem

Is there a better way to download the Dart docs for offline viewing than to use a web crawler? I have not found anything yet! Thanks!

Original source