symbolPriceTicker method

Future<TickerPrice> symbolPriceTicker(
  1. String symbol
)
inherited

Implementation

Future<TickerPrice> symbolPriceTicker(String symbol) async {
  assert(symbol != null);

  final response = await _public('/v3/ticker/price', {'symbol': symbol});

  return TickerPrice.fromMap(response);
}