copyWith method

BodyUpdateStudioProjectV1StudioProjectsProjectIdPost copyWith({
  1. String? name,
  2. String? defaultTitleVoiceId,
  3. String? defaultParagraphVoiceId,
  4. dynamic title,
  5. dynamic author,
  6. dynamic isbnNumber,
  7. bool? volumeNormalization,
})

Implementation

BodyUpdateStudioProjectV1StudioProjectsProjectIdPost copyWith(
    {String? name,
    String? defaultTitleVoiceId,
    String? defaultParagraphVoiceId,
    dynamic title,
    dynamic author,
    dynamic isbnNumber,
    bool? volumeNormalization}) {
  return BodyUpdateStudioProjectV1StudioProjectsProjectIdPost(
      name: name ?? this.name,
      defaultTitleVoiceId: defaultTitleVoiceId ?? this.defaultTitleVoiceId,
      defaultParagraphVoiceId:
          defaultParagraphVoiceId ?? this.defaultParagraphVoiceId,
      title: title ?? this.title,
      author: author ?? this.author,
      isbnNumber: isbnNumber ?? this.isbnNumber,
      volumeNormalization: volumeNormalization ?? this.volumeNormalization);
}