DescribeEntitiesDetectionJobResponse.fromJson constructor
Implementation
factory DescribeEntitiesDetectionJobResponse.fromJson(
Map<String, dynamic> json) {
return DescribeEntitiesDetectionJobResponse(
entitiesDetectionJobProperties: json['EntitiesDetectionJobProperties'] !=
null
? EntitiesDetectionJobProperties.fromJson(
json['EntitiesDetectionJobProperties'] as Map<String, dynamic>)
: null,
);
}