copyWithWrapped method
SandboxTransferTestClockCreateResponse
copyWithWrapped({
- Wrapped<
TransferTestClock> ? testClock, - Wrapped<
String> ? requestId,
Implementation
SandboxTransferTestClockCreateResponse copyWithWrapped(
{Wrapped<TransferTestClock>? testClock, Wrapped<String>? requestId}) {
return SandboxTransferTestClockCreateResponse(
testClock: (testClock != null ? testClock.value : this.testClock),
requestId: (requestId != null ? requestId.value : this.requestId));
}