ListSqlInjectionMatchSetsResponse.fromJson constructor
Implementation
factory ListSqlInjectionMatchSetsResponse.fromJson(
Map<String, dynamic> json) {
return ListSqlInjectionMatchSetsResponse(
nextMarker: json['NextMarker'] as String?,
sqlInjectionMatchSets: (json['SqlInjectionMatchSets'] as List?)
?.whereNotNull()
.map((e) =>
SqlInjectionMatchSetSummary.fromJson(e as Map<String, dynamic>))
.toList(),
);
}