copyWith method

GetPronunciationDictionariesMetadataResponseModel copyWith({
  1. List<GetPronunciationDictionaryMetadataResponseModel>? pronunciationDictionaries,
  2. dynamic nextCursor,
  3. bool? hasMore,
})

Implementation

GetPronunciationDictionariesMetadataResponseModel copyWith(
    {List<GetPronunciationDictionaryMetadataResponseModel>?
        pronunciationDictionaries,
    dynamic nextCursor,
    bool? hasMore}) {
  return GetPronunciationDictionariesMetadataResponseModel(
      pronunciationDictionaries:
          pronunciationDictionaries ?? this.pronunciationDictionaries,
      nextCursor: nextCursor ?? this.nextCursor,
      hasMore: hasMore ?? this.hasMore);
}