idGreaterThanOrEqual method

Filter idGreaterThanOrEqual(
  1. String id
)

Retrieve reactions created after the on with ID equal to the parameter (inclusive)

Implementation

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