FactCheck constructor

const FactCheck({
  1. required bool needCheck,
  2. String? country,
  3. TextWithEntitiesBase? text,
  4. required int hash,
})

Fact Check constructor.

Implementation

const FactCheck({
  required this.needCheck,
  this.country,
  this.text,
  required this.hash,
}) : super._();