copyWith method

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

Implementation

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