TweetParam constructor

const TweetParam({
  1. required String text,
  2. String? quoteTweetId,
  3. bool? forSuperFollowersOnly,
  4. ReplySetting? replySetting,
  5. String? directMessageDeepLink,
  6. TweetMediaParam? media,
  7. TweetGeoParam? geo,
  8. TweetPollParam? poll,
  9. TweetReplyParam? reply,
})

Returns the new instance of TweetParam.

Implementation

const TweetParam({
  required this.text,
  this.quoteTweetId,
  this.forSuperFollowersOnly,
  this.replySetting,
  this.directMessageDeepLink,
  this.media,
  this.geo,
  this.poll,
  this.reply,
});