copyWithWrapped method
Implementation
TransferTestClock copyWithWrapped(
{Wrapped<String?>? testClockId, Wrapped<String>? frozenTimestamp}) {
return TransferTestClock(
testClockId:
(testClockId != null ? testClockId.value : this.testClockId),
frozenTimestamp: (frozenTimestamp != null
? frozenTimestamp.value
: this.frozenTimestamp));
}