getReport method

Future<Response> getReport({
  1. required String? reportId,
})

Get a report

Get a specific report by report_id.

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

Implementation

Future<http.Response> getReport({required String? reportId}) async =>
    get(path: '/reports/$reportId');