copyWith method

Implementation

SandboxTransferSweepSimulateResponse copyWith(
    {SimulatedTransferSweep? sweep, String? requestId}) {
  return SandboxTransferSweepSimulateResponse(
      sweep: sweep ?? this.sweep, requestId: requestId ?? this.requestId);
}