copyWith method

PronunciationDictionaryLocatorResponseModel copyWith({
  1. String? pronunciationDictionaryId,
  2. dynamic versionId,
})

Implementation

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