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