matchCountry method

LogicalChannel matchCountry(
  1. Country country
)
inherited

Matches Tweets where the country code associated with a tagged place/location matches the given ISO alpha-2 character code.

You can only pass a single ISO code per this operator.

Note: This operator will not match on Retweets, since Retweet's places are attached to the original Tweet. It will also not match on places attached to the original Tweet of a Quote Tweet.

Parameters

  • value: Country enumeration to be matched.

Type

Availability

  • Elevated

Implementation

LogicalChannel matchCountry(final core.Country country) =>
    _buffer.appendOperator(
      _standaloneOperation.createCountry(country),
    );