copyWith method
Implementation
TransferTestClock copyWith({String? testClockId, String? frozenTimestamp}) {
return TransferTestClock(
testClockId: testClockId ?? this.testClockId,
frozenTimestamp: frozenTimestamp ?? this.frozenTimestamp);
}