copyWith method

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

Implementation

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