allSymbolPriceTickers method

Future<List<TickerPrice>> allSymbolPriceTickers()
inherited

Implementation

Future<List<TickerPrice>> allSymbolPriceTickers() async {
  final response = await _public('/v3/ticker/price');

  return List<TickerPrice>.from(response.map((s) => TickerPrice.fromMap(s)));
}