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