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