IGNORE_PREVIOUS_RULES property

ContentBlockerActionType IGNORE_PREVIOUS_RULES
final

Ignores previously triggered actions.

Officially Supported Platforms/Implementations:

  • iOS
  • MacOS

Implementation

static final IGNORE_PREVIOUS_RULES =
    ContentBlockerActionType._internalMultiPlatform('ignore-previous-rules',
        () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.iOS:
      return 'ignore-previous-rules';
    case TargetPlatform.macOS:
      return 'ignore-previous-rules';
    default:
      break;
  }
  return null;
});