dart-sdk/sdk/api_readme.md
Seth Ladd 464ffd0fca Removing Polymer from core SDK API's homepage
Also, the "writing API documentation" page was never moved over from the codesite.
2015-06-04 15:20:28 -07:00

1.5 KiB

Welcome to the Dart API reference documentation, covering the official Dart API libraries. Some of the most fundamental Dart libraries include:

  • dart:core: Core functionality such as strings, numbers, collections, errors, dates, and URIs.
  • dart:html: DOM manipulation for web apps.
  • dart:io: I/O for command-line apps.

Except for dart:core, you must import a library before you can use it. Here's an example of importing dart:html and dart:math:

import 'dart:html';
import 'dart:math';

You can install more libraries using the pub package manager. For information on finding, using, and publishing libraries (and more) with pub, see pub.dartlang.org.

The main site for learning and using Dart is www.dartlang.org. Check out these pages:

This API reference is automatically generated from the source code in the Dart project. If you'd like to contribute to this documentation, see Contributing.