copyWith method
Implementation
PronunciationDictionaryPhonemeRuleRequestModel copyWith(
{String? stringToReplace,
String? type,
String? phoneme,
String? alphabet}) {
return PronunciationDictionaryPhonemeRuleRequestModel(
stringToReplace: stringToReplace ?? this.stringToReplace,
type: type ?? this.type,
phoneme: phoneme ?? this.phoneme,
alphabet: alphabet ?? this.alphabet);
}