ReviewResultDetail.fromJson constructor
Implementation
factory ReviewResultDetail.fromJson(Map<String, dynamic> json) {
return ReviewResultDetail(
actionId: json['ActionId'] as String?,
key: json['Key'] as String?,
questionId: json['QuestionId'] as String?,
subjectId: json['SubjectId'] as String?,
subjectType: json['SubjectType'] as String?,
value: json['Value'] as String?,
);
}