CreateBatchInferenceJobResponse.fromJson constructor

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

Implementation

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