destroyMute abstract method

Future<MastodonResponse<Relationship>> destroyMute({
  1. required String accountId,
})

Unmute the given account.

Parameters

  • accountId: The ID of the Account in the database.

Endpoint Url

  • POST /api/v1/accounts/:id/unmute HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:mutes

Reference

Implementation

Future<MastodonResponse<Relationship>> destroyMute({
  required String accountId,
});