Slide 6
Slide 6 text
In Dart 3, you will always get null safety. Null safety prevents errors that results through
unintentional access of variables set to null. For example if a method expects an integer
but receives null, your app causes a runtime error.
With sound null safety, variables are set non nullable by default.
Dart 3
100% sound null safety