copyWith method
Implementation
BodyEditPVCVoiceV1VoicesPvcVoiceIdPost copyWith(
{String? name, String? language, dynamic description, dynamic labels}) {
return BodyEditPVCVoiceV1VoicesPvcVoiceIdPost(
name: name ?? this.name,
language: language ?? this.language,
description: description ?? this.description,
labels: labels ?? this.labels);
}