accountsGetPost method

Future<Response<AccountsGetResponse>> accountsGetPost({
  1. required AccountsGetRequest? body,
})

Retrieve accounts

Implementation

Future<chopper.Response<AccountsGetResponse>> accountsGetPost(
    {required AccountsGetRequest? body}) {
  generatedMapping.putIfAbsent(
      AccountsGetResponse, () => AccountsGetResponse.fromJsonFactory);

  return _accountsGetPost(body: body);
}