Created with <3 with dartpad.dev.
Created
January 19, 2023 04:49
-
-
Save ihsanberahim-openmindsresources/dba971a56a0c295e07d9ce5f6de5f3af to your computer and use it in GitHub Desktop.
jade-peak-8626
This file contains 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 characters
void main() { | |
// Object field is reference | |
Map<String, dynamic> var1 = { | |
'field': 'one' | |
}; | |
Map<String, dynamic> var2 = var1; | |
var2['field'] = 'three'; | |
print(var1); | |
// String variable is not reference | |
String str1 = 'one'; | |
String str2 = str1; | |
str2 = 'three'; | |
print(str1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment