cryptocurrencyQuote method

Future<CryptoQuote?> cryptocurrencyQuote(
  1. String symbol
)

Cryptocurrency Events NOT SUPPORT IN MVP VERSION (1.0.0), REST SUPPORT ONLY

Implementation

// Cryptocurrency Quote
Future<CryptoQuote?> cryptocurrencyQuote(String symbol) async {
  final path = '/crypto/${symbol.toLowerCase()}/quote?token=$token';
  return await _get<CryptoQuote?>(
    path,
    callback: (data) => CryptoQuote.parse(data),
  );
}