toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final agentInfo = this.agentInfo;
final createTime = this.createTime;
final name = this.name;
final state = this.state;
final updateTime = this.updateTime;
return {
'agentInfo': ?agentInfo,
'createTime': ?createTime,
'name': ?name,
'state': ?state,
'updateTime': ?updateTime,
};
}