lessOrEquals static method

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

Creates a Filter that matches an entry that contains the attributeName with a value that is less than or equal to attrValue.

Implementation

static Filter lessOrEquals(String attributeName, String attrValue) =>
    Filter(TYPE_LESS_OR_EQUAL, attributeName, attrValue);