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