matchFollowersCount method

LogicalChannel matchFollowersCount(
  1. Range range
)
inherited

Matches Tweets when the author has a followers count within the given range.

If a single number is specified, any number equal to or higher will match.

Additionally, a range can be specified to match any number in the given range.

Parameters

  • range: The range to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchFollowersCount(final Range range) =>
    _buffer.appendOperator(
      _standaloneOperation.createFollowersCount(range),
    );