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 interfaces = this.interfaces;
final mcpServerId = this.mcpServerId;
final name = this.name;
final tools = this.tools;
final updateTime = this.updateTime;
return {
'attributes': ?attributes,
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'interfaces': ?interfaces,
'mcpServerId': ?mcpServerId,
'name': ?name,
'tools': ?tools,
'updateTime': ?updateTime,
};
}