copyWith method

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

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