matchRetweetedBy method

LogicalChannel matchRetweetedBy(
  1. String user
)
inherited

Matches Tweets that are Retweets of the specified user.

The value can be either the username (excluding the @ character) or the user’s numeric user ID.

You can only pass a single username/ID per retweets_of: operator.

Example: retweets_of:twitterdev OR retweets_of:twitterapi

Parameters

  • user: Username or user id to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchRetweetedBy(final String user) => _buffer.appendOperator(
      _standaloneOperation.createRetweetedBy(user),
    );