copyWith method

SandboxTransferTestClockAdvanceRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? testClockId,
  4. String? newFrozenTimestamp,
})

Implementation

SandboxTransferTestClockAdvanceRequest copyWith(
    {String? clientId,
    String? secret,
    String? testClockId,
    String? newFrozenTimestamp}) {
  return SandboxTransferTestClockAdvanceRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      testClockId: testClockId ?? this.testClockId,
      newFrozenTimestamp: newFrozenTimestamp ?? this.newFrozenTimestamp);
}