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 characters
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 { |