Proposal constructor

Proposal({
  1. ProposalActions? actions,
  2. DateTime? creationDate,
  3. String? description,
  4. DateTime? expirationDate,
  5. String? networkId,
  6. int? noVoteCount,
  7. int? outstandingVoteCount,
  8. String? proposalId,
  9. String? proposedByMemberId,
  10. String? proposedByMemberName,
  11. ProposalStatus? status,
  12. int? yesVoteCount,
})

Implementation

Proposal({
  this.actions,
  this.creationDate,
  this.description,
  this.expirationDate,
  this.networkId,
  this.noVoteCount,
  this.outstandingVoteCount,
  this.proposalId,
  this.proposedByMemberId,
  this.proposedByMemberName,
  this.status,
  this.yesVoteCount,
});