walletTransactionsListPost abstract method

  1. @Post.new(path: '/wallet/transactions/list')
Future<Response<WalletTransactionsListResponse>> walletTransactionsListPost({
  1. @Body.new() required WalletTransactionsListRequest? body,
})

List e-wallet transactions

Implementation

@Post(path: '/wallet/transactions/list')
Future<chopper.Response<WalletTransactionsListResponse>>
    walletTransactionsListPost(
        {@Body() required WalletTransactionsListRequest? body});