sendInteractions method

Future<XRPCResponse<EmptyData>> sendInteractions(
  1. List<FeedInteraction> interactions
)

Implementation

Future<core.XRPCResponse<core.EmptyData>> sendInteractions(
  List<FeedInteraction> interactions,
) async =>
    await _ctx.post(
      ns.appBskyFeedSendInteractions,
      body: {
        'interactions': interactions.map((e) => e.toJson()).toList(),
      },
    );