GetRegexPatternSetResponse.fromJson constructor

GetRegexPatternSetResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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