copyWith method
Implementation
PronunciationDictionaryAliasRuleRequestModel copyWith(
{String? stringToReplace, String? type, String? alias}) {
return PronunciationDictionaryAliasRuleRequestModel(
stringToReplace: stringToReplace ?? this.stringToReplace,
type: type ?? this.type,
alias: alias ?? this.alias);
}