ReviewResultDetail.fromJson constructor

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

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?,
  );
}