equals static method

Filter equals(
  1. String attributeName,
  2. String attrValue
)

Creates a Filter that matches an entry that has an attribute with the given value.

Implementation

static Filter equals(String attributeName, String attrValue) =>
    Filter(TYPE_EQUALITY, attributeName, attrValue);