getCoinTypeArg static method

String? getCoinTypeArg(
  1. dynamic obj
)

Implementation

static String? getCoinTypeArg(ObjectData obj) {
  final type = Coin.getType(obj);
  return type != null ? Coin.getCoinType(type) : null;
}