copyWith method
RealtimeTranslationClientSecretCreateResponse
copyWith({
- String? value,
- int? expiresAt,
- RealtimeTranslationSession? session,
Returns a copy with the given fields replaced.
Implementation
RealtimeTranslationClientSecretCreateResponse copyWith({
String? value,
int? expiresAt,
RealtimeTranslationSession? session,
}) => RealtimeTranslationClientSecretCreateResponse(
value: value ?? this.value,
expiresAt: expiresAt ?? this.expiresAt,
session: session ?? this.session,
);