copyWithWrapped method
Implementation
BodyEditBasicProjectInfoV1ProjectsProjectIdPost copyWithWrapped(
{Wrapped<String>? name,
Wrapped<String>? defaultTitleVoiceId,
Wrapped<String>? defaultParagraphVoiceId,
Wrapped<dynamic>? title,
Wrapped<dynamic>? author,
Wrapped<dynamic>? isbnNumber,
Wrapped<bool?>? volumeNormalization}) {
return BodyEditBasicProjectInfoV1ProjectsProjectIdPost(
name: (name != null ? name.value : this.name),
defaultTitleVoiceId: (defaultTitleVoiceId != null
? defaultTitleVoiceId.value
: this.defaultTitleVoiceId),
defaultParagraphVoiceId: (defaultParagraphVoiceId != null
? defaultParagraphVoiceId.value
: this.defaultParagraphVoiceId),
title: (title != null ? title.value : this.title),
author: (author != null ? author.value : this.author),
isbnNumber: (isbnNumber != null ? isbnNumber.value : this.isbnNumber),
volumeNormalization: (volumeNormalization != null
? volumeNormalization.value
: this.volumeNormalization));
}