Last active
May 22, 2020 00:00
-
-
Save ThinkDigitalSoftware/383422fa45ce6657d6ec7109938a850f to your computer and use it in GitHub Desktop.
Revisions
-
ThinkDigitalSoftware revised this gist
May 22, 2020 . 1 changed file with 9 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,10 @@ void main() { var s1 = S(); print(s1?.num ?? 0 > 1); var s2 = S()..num = 1.0; print(s2?.num ?? 0 > 1); } class S { double num; } -
ThinkDigitalSoftware created this gist
May 21, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ void main() { var s1 = S(); print(s1?.num ?? 0 > 1); var s2 = S()..num = 1.0; print(s2?.num ?? 0 > 1); } class S { double num; }