V2TimFollowTypeCheckResult.fromJson constructor
- Map json
Implementation
V2TimFollowTypeCheckResult.fromJson(Map json) {
json = Utils.formatJson(json);
resultInfo = json['follow_type_check_result_info'];
resultCode = json['follow_type_check_result_code'];
userID = json['follow_type_check_result_user_id'] ?? "";
followType = EnumUtils.cFollowType2DartType(json['follow_type_check_result_follow_type']);
}