appBskyContactRemoveData function
Future<XRPCResponse<EmptyData> >
appBskyContactRemoveData({
- required ServiceContext $ctx,
- String? $service,
- 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},
);