getCurrencyTypeString function

String getCurrencyTypeString(
  1. BranchCurrencyType currencyType
)

Implementation

String getCurrencyTypeString(BranchCurrencyType currencyType) {
  return currencyType.toString().split('.').last;
}