sendInteractions method
Send information about interactions with feed items back to the feed generator that served them.
Implementation
Future<XRPCResponse<EmptyData>> sendInteractions({
required List<Interaction> interactions,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyFeedSendInteractions(
interactions: interactions,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);