averagePrice method

Future<AveragedPrice> averagePrice(
  1. String symbol
)
inherited

Implementation

Future<AveragedPrice> averagePrice(String symbol) =>
    _public('/v3/avgPrice', {'symbol': symbol})
        .then((r) => AveragedPrice.fromMap(r));