toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final etag = this.etag;
final expireTime = this.expireTime;
final labels = this.labels;
final name = this.name;
final network = this.network;
final token = this.token;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'description': ?description,
'etag': ?etag,
'expireTime': ?expireTime,
'labels': ?labels,
'name': ?name,
'network': ?network,
'token': ?token,
'updateTime': ?updateTime,
};
}