depth method

Future<BookDepth> depth(
  1. String symbol, [
  2. int limit = 100
])
inherited

Implementation

Future<BookDepth> depth(String symbol, [int limit = 100]) =>
    _public('/v1/depth', {'symbol': '$symbol', 'limit': '$limit'})
        .then((r) => BookDepth.fromMap(r));