CreateBatchPredictionOutput.fromJson constructor

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

Implementation

factory CreateBatchPredictionOutput.fromJson(Map<String, dynamic> json) {
  return CreateBatchPredictionOutput(
    batchPredictionId: json['BatchPredictionId'] as String?,
  );
}