GetSqlInjectionMatchSetResponse.fromJson constructor

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

Implementation

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