copyWith method
Implementation
SandboxTransferTestClockGetRequest copyWith(
{String? clientId, String? secret, String? testClockId}) {
return SandboxTransferTestClockGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
testClockId: testClockId ?? this.testClockId);
}