GetXssMatchSetResponse.fromJson constructor
Implementation
factory GetXssMatchSetResponse.fromJson(Map<String, dynamic> json) {
return GetXssMatchSetResponse(
xssMatchSet: json['XssMatchSet'] != null
? XssMatchSet.fromJson(json['XssMatchSet'] as Map<String, dynamic>)
: null,
);
}