CreateRegexPatternSetResponse.fromJson constructor

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

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,
  );
}