Proposal constructor

Proposal(
  1. double id,
  2. ProposalStatus status,
  3. FinalTallyResult final_tally_result,
  4. DateTime submit_time,
  5. DateTime deposit_end_time,
  6. List<Coin> total_deposit,
  7. DateTime voting_start_time,
  8. DateTime voting_end_time,
  9. ProposalContent content,
)

Implementation

Proposal(
    this.id,
    this.status,
    this.final_tally_result,
    this.submit_time,
    this.deposit_end_time,
    this.total_deposit,
    this.voting_start_time,
    this.voting_end_time,
    this.content);