sendMessageBatch method
Implementation
Future<core.XRPCResponse<SendMessageBatchOutput>> sendMessageBatch({
required List<BatchItem> items,
}) async =>
await _ctx.post(
ns.chatBskyConvoSendMessageBatch,
body: {
'items': items.map((e) => e.toJson()).toList(),
},
to: SendMessageBatchOutput.fromJson,
);