DescribeTopicsDetectionJobResponse.fromJson constructor

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

Implementation

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