PredictorExecutionDetails.fromJson constructor
Implementation
factory PredictorExecutionDetails.fromJson(Map<String, dynamic> json) {
return PredictorExecutionDetails(
predictorExecutions: (json['PredictorExecutions'] as List?)
?.whereNotNull()
.map((e) => PredictorExecution.fromJson(e as Map<String, dynamic>))
.toList(),
);
}