toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dependencyEdge = this.dependencyEdge;
final lemma = this.lemma;
final partOfSpeech = this.partOfSpeech;
final text = this.text;
return {
'dependencyEdge': ?dependencyEdge,
'lemma': ?lemma,
'partOfSpeech': ?partOfSpeech,
'text': ?text,
};
}