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