DescribeSentimentDetectionJobResponse.fromJson constructor

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

Implementation

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