DescribeKeyPhrasesDetectionJobResponse.fromJson constructor

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

Implementation

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