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