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