copyWith method

TransferTestClock copyWith({
  1. String? testClockId,
  2. String? frozenTimestamp,
})

Implementation

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