toJson method

Map<String, dynamic> toJson()

Implementation

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