toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributes = this.attributes;
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final endpointId = this.endpointId;
final interfaces = this.interfaces;
final name = this.name;
final updateTime = this.updateTime;
return {
'attributes': ?attributes,
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'endpointId': ?endpointId,
'interfaces': ?interfaces,
'name': ?name,
'updateTime': ?updateTime,
};
}