idLessThanOrEqual method

Filter idLessThanOrEqual(
  1. String id
)

Retrieve reactions created before the one with ID equal to the parameter (inclusive)

Implementation

Filter idLessThanOrEqual(String id) {
  _filters[_Filter.idLessThanOrEqual] = id;
  return this;
}