GetXssMatchSetResponse.fromJson constructor

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

Implementation

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