sendNotification method

Future<XRPCResponse<EmptyData>> sendNotification({
  1. required String from,
  2. required String to,
  3. String? $service,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

System endpoint to send notifications related to contact imports. Requires role authentication.

Implementation

Future<XRPCResponse<EmptyData>> sendNotification({
  required String from,
  required String to,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyContactSendNotification(
  from: from,
  to: to,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);