getCoinSymbol static method

dynamic getCoinSymbol(
  1. String coinTypeArg
)

Implementation

static getCoinSymbol(String coinTypeArg) {
  return coinTypeArg.substring(coinTypeArg.lastIndexOf(':') + 1);
}