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