copyWithWrapped method

Implementation

GetPronunciationDictionariesMetadataResponseModel copyWithWrapped(
    {Wrapped<List<GetPronunciationDictionaryMetadataResponseModel>>?
        pronunciationDictionaries,
    Wrapped<dynamic>? nextCursor,
    Wrapped<bool>? hasMore}) {
  return GetPronunciationDictionariesMetadataResponseModel(
      pronunciationDictionaries: (pronunciationDictionaries != null
          ? pronunciationDictionaries.value
          : this.pronunciationDictionaries),
      nextCursor: (nextCursor != null ? nextCursor.value : this.nextCursor),
      hasMore: (hasMore != null ? hasMore.value : this.hasMore));
}