transactionsGet abstract method

  1. @Post(path: '/transactions/get')
Future<Response<TransactionsGetResponse>> transactionsGet({
  1. @Body() @required TransactionsGetRequest? body,
})

Get transaction data @param body

Implementation

@Post(path: '/transactions/get')
Future<chopper.Response<TransactionsGetResponse>> transactionsGet(
    {@Body() @required TransactionsGetRequest? body});