copyWithWrapped method

Implementation

SandboxTransferSweepSimulateResponse copyWithWrapped(
    {Wrapped<SimulatedTransferSweep?>? sweep, Wrapped<String>? requestId}) {
  return SandboxTransferSweepSimulateResponse(
      sweep: (sweep != null ? sweep.value : this.sweep),
      requestId: (requestId != null ? requestId.value : this.requestId));
}