CreateRegexPatternSetResponse.fromJson constructor

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

Implementation

factory CreateRegexPatternSetResponse.fromJson(Map<String, dynamic> json) {
  return CreateRegexPatternSetResponse(
    summary: json['Summary'] != null
        ? RegexPatternSetSummary.fromJson(
            json['Summary'] as Map<String, dynamic>)
        : null,
  );
}