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