toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotations = this.annotations;
final createTime = this.createTime;
final description = this.description;
final fingerprints = this.fingerprints;
final metadata = this.metadata;
final name = this.name;
final relatedTags = this.relatedTags;
final updateTime = this.updateTime;
return {
'annotations': ?annotations,
'createTime': ?createTime,
'description': ?description,
'fingerprints': ?fingerprints,
'metadata': ?metadata,
'name': ?name,
'relatedTags': ?relatedTags,
'updateTime': ?updateTime,
};
}