toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dataSourceNode = this.dataSourceNode;
final depth = this.depth;
final endIndex = this.endIndex;
final startIndex = this.startIndex;
final word = this.word;
return {
'dataSourceNode': ?dataSourceNode,
'depth': ?depth,
'endIndex': ?endIndex,
'startIndex': ?startIndex,
'word': ?word,
};
}