copyWith method

SandboxTransferTestClockCreateResponse copyWith({
  1. TransferTestClock? testClock,
  2. String? requestId,
})

Implementation

SandboxTransferTestClockCreateResponse copyWith(
    {TransferTestClock? testClock, String? requestId}) {
  return SandboxTransferTestClockCreateResponse(
      testClock: testClock ?? this.testClock,
      requestId: requestId ?? this.requestId);
}