GetRegexMatchSetResponse.fromJson constructor

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

Implementation

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