toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final testDocuments = this.testDocuments;
  final trainingDocuments = this.trainingDocuments;
  return {
    'testDocuments': ?testDocuments,
    'trainingDocuments': ?trainingDocuments,
  };
}