hasFlag method

bool hasFlag(
  1. ExclusionFilters filter
)

Checks if this filter includes the specified filter.

Implementation

bool hasFlag(ExclusionFilters filter) => (value & filter.value) != 0;