copyWith method

PronunciationDictionaryRulesResponseModel copyWith({
  1. String? id,
  2. String? versionId,
  3. int? versionRulesNum,
})

Implementation

PronunciationDictionaryRulesResponseModel copyWith(
    {String? id, String? versionId, int? versionRulesNum}) {
  return PronunciationDictionaryRulesResponseModel(
      id: id ?? this.id,
      versionId: versionId ?? this.versionId,
      versionRulesNum: versionRulesNum ?? this.versionRulesNum);
}