supportCrypto function

List<String> supportCrypto()

Implementation

List<String> supportCrypto() {
  const values = Wallet.values;
  final wallets = values.map((element) => element.toString().split(".").last);
  return wallets.toList();
}