Proposal constructor

Proposal({
  1. String? billedBuyer,
  2. String? buyer,
  3. List<Contact>? buyerContacts,
  4. PrivateData? buyerPrivateData,
  5. String? client,
  6. String? dealType,
  7. String? displayName,
  8. bool? isRenegotiating,
  9. String? lastUpdaterOrCommentorRole,
  10. String? name,
  11. List<Note>? notes,
  12. String? originatorRole,
  13. bool? pausingConsented,
  14. String? proposalRevision,
  15. String? publisherProfile,
  16. List<Contact>? sellerContacts,
  17. String? state,
  18. String? termsAndConditions,
  19. String? updateTime,
})

Implementation

Proposal({
  this.billedBuyer,
  this.buyer,
  this.buyerContacts,
  this.buyerPrivateData,
  this.client,
  this.dealType,
  this.displayName,
  this.isRenegotiating,
  this.lastUpdaterOrCommentorRole,
  this.name,
  this.notes,
  this.originatorRole,
  this.pausingConsented,
  this.proposalRevision,
  this.publisherProfile,
  this.sellerContacts,
  this.state,
  this.termsAndConditions,
  this.updateTime,
});