CreateRegexMatchSetResponse.fromJson constructor

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

Implementation

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