Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Link to breaking changes in Dart 3 #4535

Merged
merged 3 commits into from
Jan 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/null-safety/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,14 @@ environment:

This allows developers to use Dart 3 sound null safety with packages that have
been migrated to 2.12 null safety without needing a second migration.
Note that this only applies to code that
doesn't depend on Dart 3 breaking changes:

* Several historical core library APIs have been removed; for details,
see the GitHub issues [#34233][] and [#49529][].
* The historical language syntax for default parameter values
([#2357][]) has been discontinued.


## Dart 2.x and null safety {#enable-null-safety}

Expand Down Expand Up @@ -180,4 +188,7 @@ For more information about null safety, see the following resources:
[Null safety FAQ]: /null-safety/faq
[Null safety codelab]: /codelabs/null-safety
[Understanding null safety]: /null-safety/understanding-null-safety
[#34233]: https://github.com/dart-lang/sdk/issues/34233
[#49529]: https://github.com/dart-lang/sdk/issues/49529
[#2357]: https://github.com/dart-lang/language/issues/2357