sendNotification method
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,
);