createFeaturedTag abstract method

Future<MastodonResponse<FeaturedTag>> createFeaturedTag({
  1. required String tagName,
})

Promote a hashtag on your profile.

Parameters

  • tagName: The hashtag to be featured, without the hash sign.

Endpoint Url

  • POST /api/v1/featured_tags HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:accounts

Reference

Implementation

Future<MastodonResponse<FeaturedTag>> createFeaturedTag({
  required String tagName,
});