destroyMute abstract method

Future<MastodonResponse<Status>> destroyMute({
  1. required String statusId,
})

Start receiving notifications again for the thread that this status is part of.

Parameters

  • statusId: The ID of the Status in the database.

Endpoint Url

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

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:mutes

Reference

Implementation

Future<MastodonResponse<Status>> destroyMute({
  required String statusId,
});