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