walletTransactionGetPost method

Future<Response<WalletTransactionGetResponse>> walletTransactionGetPost({
  1. required WalletTransactionGetRequest? body,
})

Fetch an e-wallet transaction

Implementation

Future<chopper.Response<WalletTransactionGetResponse>>
    walletTransactionGetPost({required WalletTransactionGetRequest? body}) {
  generatedMapping.putIfAbsent(WalletTransactionGetResponse,
      () => WalletTransactionGetResponse.fromJsonFactory);

  return _walletTransactionGetPost(body: body);
}