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