toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final consumerAcceptList = this.consumerAcceptList;
final consumerRejectList = this.consumerRejectList;
final pscEndpoints = this.pscEndpoints;
final serviceAttachment = this.serviceAttachment;
return {
'consumerAcceptList': ?consumerAcceptList,
'consumerRejectList': ?consumerRejectList,
'pscEndpoints': ?pscEndpoints,
'serviceAttachment': ?serviceAttachment,
};
}