ProposalSummary constructor

ProposalSummary({
  1. DateTime? creationDate,
  2. String? description,
  3. DateTime? expirationDate,
  4. String? proposalId,
  5. String? proposedByMemberId,
  6. String? proposedByMemberName,
  7. ProposalStatus? status,
})

Implementation

ProposalSummary({
  this.creationDate,
  this.description,
  this.expirationDate,
  this.proposalId,
  this.proposedByMemberId,
  this.proposedByMemberName,
  this.status,
});