copyWith method

FactCheck copyWith({
  1. FormattedText? text,
  2. String? countryCode,
})

Implementation

FactCheck copyWith({FormattedText? text, String? countryCode}) => FactCheck(
  text: text ?? this.text,
  countryCode: countryCode ?? this.countryCode,
);