walletISOCurrencyCodeListToJson function

List<String> walletISOCurrencyCodeListToJson(
  1. List<WalletISOCurrencyCode>? walletISOCurrencyCode
)

Implementation

List<String> walletISOCurrencyCodeListToJson(
    List<enums.WalletISOCurrencyCode>? walletISOCurrencyCode) {
  if (walletISOCurrencyCode == null) {
    return [];
  }

  return walletISOCurrencyCode
      .map((e) => enums.$WalletISOCurrencyCodeMap[e]!)
      .toList();
}