fromSymbol static method

IconData? fromSymbol(
  1. String symbol
)

Implementation

static IconData? fromSymbol(String symbol) {
  final code = cryptoFontIconMapping[symbol.toLowerCase()];
  if (code == null) {
    return null;
  }
  return CryptoFontIconData(code);
}