getProductStats method

Future<Response> getProductStats({
  1. required String productId,
})

Get product stats

Gets 30day and 24hour stats for a product.

https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getproductstats

Implementation

Future<http.Response> getProductStats({
  required String productId,
}) async =>
    get(path: '/products/$productId/stats');