Skip to content

Instantly share code, notes, and snippets.

View Soorya-S's full-sized avatar

Soorya Soorya-S

  • Chennai
View GitHub Profile
@Soorya-S
Soorya-S / gist:e431d12f04cf851dd96f85e059e747c3
Last active July 22, 2023 20:58
Flutter code to map country code, country name with it's currency.
class CountryCurrency {
final String country;
final String countryCode;
final String currency;
final String code;
CountryCurrency(this.country, this.countryCode, this.currency, this.code);
}
class CountryCurrencyMapping {