destroyHiddenReply abstract method

Future<TwitterResponse<ReplyStateData, void>> destroyHiddenReply({
  1. required String tweetId,
})

Unhides a reply to a Tweet.

Parameters

  • tweetId: Unique identifier of the Tweet to unhide. The Tweet must belong to a conversation initiated by the authenticating user.

Endpoint Url

Authentication Methods

  • OAuth 2.0 Authorization Code with PKCE
  • OAuth 1.0a

Required Scopes

  • tweet.read
  • users.read
  • tweet.moderate.write

Rate Limits

  • User rate limit (OAuth 2.0 user Access Token): 50 requests per 15-minute window per each authenticated user

Reference

Implementation

Future<TwitterResponse<ReplyStateData, void>> destroyHiddenReply(
    {required String tweetId});