toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final agentId = this.agentId;
final attributes = this.attributes;
final card = this.card;
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final location = this.location;
final name = this.name;
final protocols = this.protocols;
final skills = this.skills;
final uid = this.uid;
final updateTime = this.updateTime;
final version = this.version;
return {
'agentId': ?agentId,
'attributes': ?attributes,
'card': ?card,
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'location': ?location,
'name': ?name,
'protocols': ?protocols,
'skills': ?skills,
'uid': ?uid,
'updateTime': ?updateTime,
'version': ?version,
};
}