WebhookFilterRule.fromJson constructor

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

Implementation

factory WebhookFilterRule.fromJson(Map<String, dynamic> json) {
  return WebhookFilterRule(
    jsonPath: json['jsonPath'] as String,
    matchEquals: json['matchEquals'] as String?,
  );
}