toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allMetrics = this.allMetrics;
  final builtInAlgorithmOutput = this.builtInAlgorithmOutput;
  final endTime = this.endTime;
  final finalMetric = this.finalMetric;
  final hyperparameters = this.hyperparameters;
  final isTrialStoppedEarly = this.isTrialStoppedEarly;
  final startTime = this.startTime;
  final state = this.state;
  final trialId = this.trialId;
  final webAccessUris = this.webAccessUris;
  return {
    'allMetrics': ?allMetrics,
    'builtInAlgorithmOutput': ?builtInAlgorithmOutput,
    'endTime': ?endTime,
    'finalMetric': ?finalMetric,
    'hyperparameters': ?hyperparameters,
    'isTrialStoppedEarly': ?isTrialStoppedEarly,
    'startTime': ?startTime,
    'state': ?state,
    'trialId': ?trialId,
    'webAccessUris': ?webAccessUris,
  };
}