walletISOCurrencyCodeListToJson function
Implementation
List<String> walletISOCurrencyCodeListToJson(
List<enums.WalletISOCurrencyCode>? walletISOCurrencyCode) {
if (walletISOCurrencyCode == null) {
return [];
}
return walletISOCurrencyCode
.map((e) => enums.$WalletISOCurrencyCodeMap[e]!)
.toList();
}