GroupVotesFromJson constructor

GroupVotesFromJson(
  1. String? organeRef,
  2. int? nbMembers,
  3. int? votedFor,
  4. int? votedAgainst,
  5. int? votedAbstention,
  6. int? didNotVote,
  7. List<IndividualVoteFromJson>? individualVotesDetails,
  8. String? majoriteVote,
)

GroupVotesFromJson is the group of persons

Implementation

GroupVotesFromJson(
    this.organeRef,
    this.nbMembers,
    this.votedFor,
    this.votedAgainst,
    this.votedAbstention,
    this.didNotVote,
    this.individualVotesDetails,
    this.majoriteVote);