cryptocurrencyBook method

Future<CryptoBook?> cryptocurrencyBook(
  1. String symbol
)

Cryptocurrency Cryptocurrency Book

Implementation

Future<CryptoBook?> cryptocurrencyBook(String symbol) async {
  final path = '/crypto/${symbol.toLowerCase()}/book?token=$token';
  return await _get<CryptoBook?>(
    path,
    callback: (data) => CryptoBook.parse(data),
  );
}