ScrutinFromJson constructor

ScrutinFromJson(
  1. String? uuid,
  2. String? organeRef,
  3. String? numero,
  4. String? seanceRef,
  5. DateTime? dateScrutin,
  6. String? codeVote,
  7. String? libelleVote,
  8. String? majoriteVote,
  9. String? resultatVote,
  10. String? titre,
  11. String? demandeur,
  12. int? votedFor,
  13. int? votedAgainst,
  14. int? votedAbstention,
  15. int? didNotVote,
  16. List<GroupVotesFromJson>? groupVotesDetails,
  17. List<GroupVotesFromJson>? intergroupVotesDetails,
)

ScrutinFromJson is the vote in the whole assembly

Implementation

ScrutinFromJson(
    this.uuid,
    this.organeRef,
    this.numero,
    this.seanceRef,
    this.dateScrutin,
    this.codeVote,
    this.libelleVote,
    this.majoriteVote,
    this.resultatVote,
    this.titre,
    this.demandeur,
    this.votedFor,
    this.votedAgainst,
    this.votedAbstention,
    this.didNotVote,
    this.groupVotesDetails,
    this.intergroupVotesDetails);