toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final aspect = this.aspect;
final case_ = this.case_;
final form = this.form;
final gender = this.gender;
final mood = this.mood;
final number = this.number;
final person = this.person;
final proper = this.proper;
final reciprocity = this.reciprocity;
final tag = this.tag;
final tense = this.tense;
final voice = this.voice;
return {
'aspect': ?aspect,
'case': ?case_,
'form': ?form,
'gender': ?gender,
'mood': ?mood,
'number': ?number,
'person': ?person,
'proper': ?proper,
'reciprocity': ?reciprocity,
'tag': ?tag,
'tense': ?tense,
'voice': ?voice,
};
}