diff options
author | Kirill Malev <playittodeath@gmail.com> | 2020-03-10 19:05:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-10 19:05:38 +0300 |
commit | 79561a4f43834edf47acf3e3d980aeacabe48d2e (patch) | |
tree | 7806a29efb0dbd00d0c15ce292e6baeb54bc1762 /dart.html.markdown | |
parent | 9e975a8dcf821ea385742cfe9088d72388d08e43 (diff) |
[dart/en-en] Updated example 33
`var hasValue ??= "default Value";`
doesn't work in dart 2.7.0
Diffstat (limited to 'dart.html.markdown')
-rw-r--r-- | dart.html.markdown | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dart.html.markdown b/dart.html.markdown index 2672dc6a..3e50f75e 100644 --- a/dart.html.markdown +++ b/dart.html.markdown @@ -694,7 +694,6 @@ example33() { /// Dart has also added feature such as Null aware operators var isBool = true; var hasString = isBool ?? "default String"; -var hasValue ??= "default Value"; /// Programs have only one entry point in the main function. /// Nothing is expected to be executed on the outer scope before a program |