Statement constructor Null safety

Statement(
  1. String statementText,
  2. String statementAuthor,
  3. String statementCategory,
  4. String statementCorrectness,
  5. int statementYear,
  6. int statementMonth,
  7. int statementDay,
  8. Facts statementFactchecks,
  9. String statementLanguage,
  10. String statementLink,
  11. String statementMedia,
  12. String statementMediatype,
  13. String? statementPictureURL,
  14. String samplePictureCopyright,
  15. bool statementRectification,
  16. String? objectId
)

Default constructor.

Implementation

Statement(
    this.statementText,
    this.statementAuthor,
    this.statementCategory,
    this.statementCorrectness,
    this.statementYear,
    this.statementMonth,
    this.statementDay,
    this.statementFactchecks,
    this.statementLanguage,
    this.statementLink,
    this.statementMedia,
    this.statementMediatype,
    this.statementPictureURL,
    this.samplePictureCopyright,
    this.statementRectification,
    this.objectId);