approx static method

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

Creates a Filter that matches an entry that contains the attributeName that approximately matches attrValue.

Implementation

static Filter approx(String attributeName, String attrValue) =>
    Filter(TYPE_APPROXIMATE_MATCH, attributeName, attrValue);