toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endIndex = this.endIndex;
final paragraph = this.paragraph;
final sectionBreak = this.sectionBreak;
final startIndex = this.startIndex;
final table = this.table;
final tableOfContents = this.tableOfContents;
return {
'endIndex': ?endIndex,
'paragraph': ?paragraph,
'sectionBreak': ?sectionBreak,
'startIndex': ?startIndex,
'table': ?table,
'tableOfContents': ?tableOfContents,
};
}