copyWithWrapped method

Implementation

BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost
    copyWithWrapped(
        {Wrapped<List<PronunciationDictionaryVersionLocatorDBModel>>?
            pronunciationDictionaryLocators,
        Wrapped<bool?>? invalidateAffectedText}) {
  return BodyCreatePronunciationDictionariesV1StudioProjectsProjectIdPronunciationDictionariesPost(
      pronunciationDictionaryLocators:
          (pronunciationDictionaryLocators != null
              ? pronunciationDictionaryLocators.value
              : this.pronunciationDictionaryLocators),
      invalidateAffectedText: (invalidateAffectedText != null
          ? invalidateAffectedText.value
          : this.invalidateAffectedText));
}