reply method
Implementation
Future<void> reply({
required String text,
required String replyTo,
required String rootHash,
List<File> files = const [],
}) async {
final attachments = await _createAttachments(files);
await TailscaleClient.instance.events.publish(
PostEventBodyModel(
text: text,
replyTo: replyTo,
rootHash: rootHash,
attachments: attachments,
),
);
}