copyWith method
GetPronunciationDictionariesMetadataResponseModel
copyWith({
- List<
GetPronunciationDictionaryMetadataResponseModel> ? pronunciationDictionaries, - dynamic nextCursor,
- 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);
}