PredictorExecutionDetails.fromJson constructor

PredictorExecutionDetails.fromJson(
  1. Map<String, dynamic> json
)

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(),
  );
}