transactionsGetPost abstract method

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

Get transaction data

Implementation

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