copyWithWrapped method

SandboxTransferTestClockGetResponse copyWithWrapped({
  1. Wrapped<TransferTestClock>? testClock,
  2. Wrapped<String>? requestId,
})

Implementation

SandboxTransferTestClockGetResponse copyWithWrapped(
    {Wrapped<TransferTestClock>? testClock, Wrapped<String>? requestId}) {
  return SandboxTransferTestClockGetResponse(
      testClock: (testClock != null ? testClock.value : this.testClock),
      requestId: (requestId != null ? requestId.value : this.requestId));
}