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