toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final corpusType = this.corpusType;
final description = this.description;
final fileCorpus = this.fileCorpus;
final name = this.name;
return {
'corpusType': ?corpusType,
'description': ?description,
'fileCorpus': ?fileCorpus,
'name': ?name,
};
}