toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final chunkId = this.chunkId;
final content = this.content;
final pageFooters = this.pageFooters;
final pageHeaders = this.pageHeaders;
final pageSpan = this.pageSpan;
final sourceBlockIds = this.sourceBlockIds;
return {
'chunkId': ?chunkId,
'content': ?content,
'pageFooters': ?pageFooters,
'pageHeaders': ?pageHeaders,
'pageSpan': ?pageSpan,
'sourceBlockIds': ?sourceBlockIds,
};
}