Skip to content

Instantly share code, notes, and snippets.

@Modoo-Dev
Created March 21, 2023 05:58
Show Gist options
  • Save Modoo-Dev/e775fb806f220e606f3927dbbacd6c41 to your computer and use it in GitHub Desktop.
Save Modoo-Dev/e775fb806f220e606f3927dbbacd6c41 to your computer and use it in GitHub Desktop.
dartPractice-collection
void main(List<String> arguments) {
Map<String, dynamic> country = {
'name': 'Indonesia',
'capital': 'Jakarta',
'population': 273523615,
};
print('원본:$country');
country['currency'] = 'IDR';
print('currentcy 추가:$country');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment