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