toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final calculateTime = this.calculateTime;
  final dataCaptureTime = this.dataCaptureTime;
  final drilldownPaths = this.drilldownPaths;
  final recommendations = this.recommendations;
  final score = this.score;
  final scorePath = this.scorePath;
  return {
    'calculateTime': ?calculateTime,
    'dataCaptureTime': ?dataCaptureTime,
    'drilldownPaths': ?drilldownPaths,
    'recommendations': ?recommendations,
    'score': ?score,
    'scorePath': ?scorePath,
  };
}