destroyBlockedDomain abstract method

Future<MastodonResponse<Empty>> destroyBlockedDomain({
  1. required String domainName,
})

Remove a domain block, if it exists in the user’s array of blocked domains.

Parameters

  • domainName: Domain to block.

Endpoint Url

  • DELETE /api/v1/domain_blocks HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • follow
  • write:blocks

Reference

Implementation

Future<MastodonResponse<Empty>> destroyBlockedDomain({
  required String domainName,
});