ListPHIDetectionJobsResponse.fromJson constructor
ListPHIDetectionJobsResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory ListPHIDetectionJobsResponse.fromJson(Map<String, dynamic> json) {
return ListPHIDetectionJobsResponse(
comprehendMedicalAsyncJobPropertiesList:
(json['ComprehendMedicalAsyncJobPropertiesList'] as List?)
?.whereNotNull()
.map((e) => ComprehendMedicalAsyncJobProperties.fromJson(
e as Map<String, dynamic>))
.toList(),
nextToken: json['NextToken'] as String?,
);
}