DeleteRegexPatternSetResponse.fromJson constructor

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

Implementation

factory DeleteRegexPatternSetResponse.fromJson(Map<String, dynamic> json) {
  return DeleteRegexPatternSetResponse(
    changeToken: json['ChangeToken'] as String?,
  );
}