Proposal constructor

Proposal({
  1. Buyer? billedBuyer,
  2. Buyer? buyer,
  3. List<ContactInformation>? buyerContacts,
  4. PrivateData? buyerPrivateData,
  5. List<Deal>? deals,
  6. String? displayName,
  7. bool? isRenegotiating,
  8. bool? isSetupComplete,
  9. String? lastUpdaterOrCommentorRole,
  10. List<Note>? notes,
  11. String? originatorRole,
  12. String? privateAuctionId,
  13. String? proposalId,
  14. String? proposalRevision,
  15. String? proposalState,
  16. Seller? seller,
  17. List<ContactInformation>? sellerContacts,
  18. String? termsAndConditions,
  19. String? updateTime,
})

Implementation

Proposal({
  this.billedBuyer,
  this.buyer,
  this.buyerContacts,
  this.buyerPrivateData,
  this.deals,
  this.displayName,
  this.isRenegotiating,
  this.isSetupComplete,
  this.lastUpdaterOrCommentorRole,
  this.notes,
  this.originatorRole,
  this.privateAuctionId,
  this.proposalId,
  this.proposalRevision,
  this.proposalState,
  this.seller,
  this.sellerContacts,
  this.termsAndConditions,
  this.updateTime,
});