walletTransactionsListPost method

Future<Response<WalletTransactionListResponse>> walletTransactionsListPost({
  1. required WalletTransactionsListRequest? body,
})

List e-wallet transactions

Implementation

Future<chopper.Response<WalletTransactionListResponse>>
    walletTransactionsListPost(
        {required WalletTransactionsListRequest? body}) {
  generatedMapping.putIfAbsent(WalletTransactionListResponse,
      () => WalletTransactionListResponse.fromJsonFactory);

  return _walletTransactionsListPost(body: body);
}