copyWithWrapped method

TransferTestClock copyWithWrapped({
  1. Wrapped<String?>? testClockId,
  2. Wrapped<String>? frozenTimestamp,
})

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));
}