copyWith method

BodyEditPVCVoiceV1VoicesPvcVoiceIdPost copyWith({
  1. String? name,
  2. String? language,
  3. dynamic description,
  4. dynamic labels,
})

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);
}