Skip to content

Instantly share code, notes, and snippets.

@ihsanberahim-openmindsresources
Created January 19, 2023 04:49
Show Gist options
  • Save ihsanberahim-openmindsresources/dba971a56a0c295e07d9ce5f6de5f3af to your computer and use it in GitHub Desktop.
Save ihsanberahim-openmindsresources/dba971a56a0c295e07d9ce5f6de5f3af to your computer and use it in GitHub Desktop.
jade-peak-8626
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