DeleteRegexMatchSetResponse.fromJson constructor

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

Implementation

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