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