copyWith method
PronunciationDictionaryLocatorResponseModel
copyWith({
- String? pronunciationDictionaryId,
- dynamic versionId,
Implementation
PronunciationDictionaryLocatorResponseModel copyWith(
{String? pronunciationDictionaryId, dynamic versionId}) {
return PronunciationDictionaryLocatorResponseModel(
pronunciationDictionaryId:
pronunciationDictionaryId ?? this.pronunciationDictionaryId,
versionId: versionId ?? this.versionId);
}