copyWith method

LanguagePresetTranslation copyWith({
  1. String? sourceHash,
  2. String? text,
})

Implementation

LanguagePresetTranslation copyWith({String? sourceHash, String? text}) {
  return LanguagePresetTranslation(
      sourceHash: sourceHash ?? this.sourceHash, text: text ?? this.text);
}