walletTransactionListPost method

Future<Response<WalletTransactionListResponse>> walletTransactionListPost({
  1. required WalletTransactionListRequest? body,
})

List e-wallet transactions

Implementation

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

  return _walletTransactionListPost(body: body);
}