removeData method

Future<XRPCResponse<EmptyData>> removeData({
  1. String? $service,
  2. Map<String, String>? $headers,
})

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

Implementation

Future<XRPCResponse<EmptyData>> removeData({
  String? $service,
  Map<String, String>? $headers,
}) async => await appBskyContactRemoveData(
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
);