appBskyContactRemoveData function

Future<XRPCResponse<EmptyData>> appBskyContactRemoveData({
  1. required ServiceContext $ctx,
  2. String? $service,
  3. Map<String, String>? $headers,
})

Removes all stored hashes used for contact matching, existing matches, and sync status. Requires authentication.

Implementation

Future<XRPCResponse<EmptyData>> appBskyContactRemoveData({
  required ServiceContext $ctx,
  String? $service,
  Map<String, String>? $headers,
}) async => await $ctx.post(
  ns.appBskyContactRemoveData,
  service: $service,
  headers: {...?$headers},
);