toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotations = this.annotations;
final contents = this.contents;
final createTime = this.createTime;
final description = this.description;
final filename = this.filename;
final hash = this.hash;
final labels = this.labels;
final mimeType = this.mimeType;
final name = this.name;
final revisionCreateTime = this.revisionCreateTime;
final revisionId = this.revisionId;
final revisionUpdateTime = this.revisionUpdateTime;
final sizeBytes = this.sizeBytes;
final sourceUri = this.sourceUri;
return {
'annotations': ?annotations,
'contents': ?contents,
'createTime': ?createTime,
'description': ?description,
'filename': ?filename,
'hash': ?hash,
'labels': ?labels,
'mimeType': ?mimeType,
'name': ?name,
'revisionCreateTime': ?revisionCreateTime,
'revisionId': ?revisionId,
'revisionUpdateTime': ?revisionUpdateTime,
'sizeBytes': ?sizeBytes,
'sourceUri': ?sourceUri,
};
}