sandboxTransferSweepSimulatePost method

Future<Response<SandboxTransferSweepSimulateResponse>> sandboxTransferSweepSimulatePost({
  1. required SandboxTransferSweepSimulateRequest? body,
})

Simulate creating a sweep

Implementation

Future<chopper.Response<SandboxTransferSweepSimulateResponse>>
    sandboxTransferSweepSimulatePost(
        {required SandboxTransferSweepSimulateRequest? body}) {
  generatedMapping.putIfAbsent(SandboxTransferSweepSimulateResponse,
      () => SandboxTransferSweepSimulateResponse.fromJsonFactory);

  return _sandboxTransferSweepSimulatePost(body: body);
}