toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final billedBuyer = this.billedBuyer;
final buyer = this.buyer;
final buyerContacts = this.buyerContacts;
final buyerPrivateData = this.buyerPrivateData;
final client = this.client;
final dealType = this.dealType;
final displayName = this.displayName;
final isRenegotiating = this.isRenegotiating;
final lastUpdaterOrCommentorRole = this.lastUpdaterOrCommentorRole;
final name = this.name;
final notes = this.notes;
final originatorRole = this.originatorRole;
final pausingConsented = this.pausingConsented;
final proposalRevision = this.proposalRevision;
final publisherProfile = this.publisherProfile;
final sellerContacts = this.sellerContacts;
final state = this.state;
final termsAndConditions = this.termsAndConditions;
final updateTime = this.updateTime;
return {
'billedBuyer': ?billedBuyer,
'buyer': ?buyer,
'buyerContacts': ?buyerContacts,
'buyerPrivateData': ?buyerPrivateData,
'client': ?client,
'dealType': ?dealType,
'displayName': ?displayName,
'isRenegotiating': ?isRenegotiating,
'lastUpdaterOrCommentorRole': ?lastUpdaterOrCommentorRole,
'name': ?name,
'notes': ?notes,
'originatorRole': ?originatorRole,
'pausingConsented': ?pausingConsented,
'proposalRevision': ?proposalRevision,
'publisherProfile': ?publisherProfile,
'sellerContacts': ?sellerContacts,
'state': ?state,
'termsAndConditions': ?termsAndConditions,
'updateTime': ?updateTime,
};
}