toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final encryptionSpec = this.encryptionSpec;
final gcsUri = this.gcsUri;
final labels = this.labels;
final metric = this.metric;
final name = this.name;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'encryptionSpec': ?encryptionSpec,
'gcsUri': ?gcsUri,
'labels': ?labels,
'metric': ?metric,
'name': ?name,
'updateTime': ?updateTime,
};
}