walletTransactionExecutePost method

Future<Response<WalletTransactionExecuteResponse>> walletTransactionExecutePost({
  1. required WalletTransactionExecuteRequest? body,
})

Execute a transaction using an e-wallet

Implementation

Future<chopper.Response<WalletTransactionExecuteResponse>>
    walletTransactionExecutePost(
        {required WalletTransactionExecuteRequest? body}) {
  generatedMapping.putIfAbsent(WalletTransactionExecuteResponse,
      () => WalletTransactionExecuteResponse.fromJsonFactory);

  return _walletTransactionExecutePost(body: body);
}