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