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