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