dart-sdk/sdk/api_readme.md
Michael Thomsen 49c55ffd85 Update the API docs readme
This updates the readme, which is shown at https://api.dart.dev/

Closes https://github.com/dart-lang/sdk/pull/40187
https://github.com/dart-lang/sdk/pull/40187

GitOrigin-RevId: b02e01d5097d9f45ad8627f103ee5591af3c1f05
Change-Id: Ic1f66fa0bb539f13f1c0c117d9d74b5ac26f6617
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/131980
Reviewed-by: Kathy Walrath <kathyw@google.com>
Commit-Queue: Kathy Walrath <kathyw@google.com>
2020-01-16 21:23:09 +00:00

1.3 KiB

Welcome to the Dart API reference documentation, covering the Dart core libraries. These include:

  • dart:core: Core functionality such as strings, numbers, collections, errors, dates, and URIs.
  • dart:html: DOM manipulation for web apps (available only to web apps).
  • dart:io: I/O for non-web apps.

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

import 'dart:async';
import 'dart:math';

You can find more libraries using the pub.dev site.

The main site for learning and using Dart is dart.dev. Check out these pages:

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