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