investmentsTransactionsGetPost method

Future<Response<InvestmentsTransactionsGetResponse>> investmentsTransactionsGetPost({
  1. required InvestmentsTransactionsGetRequest? body,
})

Get investment transactions

Implementation

Future<chopper.Response<InvestmentsTransactionsGetResponse>>
    investmentsTransactionsGetPost(
        {required InvestmentsTransactionsGetRequest? body}) {
  generatedMapping.putIfAbsent(InvestmentsTransactionsGetResponse,
      () => InvestmentsTransactionsGetResponse.fromJsonFactory);

  return _investmentsTransactionsGetPost(body: body);
}