copyWith method
SandboxTransferTestClockCreateResponse
copyWith({
- TransferTestClock? testClock,
- String? requestId,
Implementation
SandboxTransferTestClockCreateResponse copyWith(
{TransferTestClock? testClock, String? requestId}) {
return SandboxTransferTestClockCreateResponse(
testClock: testClock ?? this.testClock,
requestId: requestId ?? this.requestId);
}