copyWith method

SandboxTransferTestClockCreateRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? frozenTimestamp,
})

Implementation

SandboxTransferTestClockCreateRequest copyWith(
    {String? clientId, String? secret, String? frozenTimestamp}) {
  return SandboxTransferTestClockCreateRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      frozenTimestamp: frozenTimestamp ?? this.frozenTimestamp);
}