getCurrencyCode static method

String getCurrencyCode(
  1. Currency name
)

Implementation

static String getCurrencyCode(Currency name) {
  switch (name) {
    case Currency.laoKip:
      return "418";
  }
}