CreateRegexMatchSetResponse.fromJson constructor
Implementation
factory CreateRegexMatchSetResponse.fromJson(Map<String, dynamic> json) {
return CreateRegexMatchSetResponse(
changeToken: json['ChangeToken'] as String?,
regexMatchSet: json['RegexMatchSet'] != null
? RegexMatchSet.fromJson(
json['RegexMatchSet'] as Map<String, dynamic>)
: null,
);
}