copyWith method

PronunciationDictionaryAliasRuleRequestModel copyWith({
  1. String? stringToReplace,
  2. String? type,
  3. String? alias,
})

Implementation

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