toCurrencyCode method
Implementation
CurrencyCode toCurrencyCode() {
switch (this) {
case 'CNY':
return CurrencyCode.cny;
case 'USD':
return CurrencyCode.usd;
}
throw Exception('$this is not known in enum CurrencyCode');
}
CurrencyCode toCurrencyCode() {
switch (this) {
case 'CNY':
return CurrencyCode.cny;
case 'USD':
return CurrencyCode.usd;
}
throw Exception('$this is not known in enum CurrencyCode');
}