toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotationDataId = this.annotationDataId;
final annotationDataLink = this.annotationDataLink;
final annotationType = this.annotationType;
final contentRanges = this.contentRanges;
final data = this.data;
final deleted = this.deleted;
final id = this.id;
final kind = this.kind;
final layerId = this.layerId;
final pageIds = this.pageIds;
final selectedText = this.selectedText;
final selfLink = this.selfLink;
final updated = this.updated;
final volumeId = this.volumeId;
return {
'annotationDataId': ?annotationDataId,
'annotationDataLink': ?annotationDataLink,
'annotationType': ?annotationType,
'contentRanges': ?contentRanges,
'data': ?data,
'deleted': ?deleted,
'id': ?id,
'kind': ?kind,
'layerId': ?layerId,
'pageIds': ?pageIds,
'selectedText': ?selectedText,
'selfLink': ?selfLink,
'updated': ?updated,
'volumeId': ?volumeId,
};
}