volorio_rte 0.2.1
volorio_rte: ^0.2.1 copied to clipboard
Volorio realtime engagement helpers for reactions, polls, Q&A, and room interactions in Flutter.
example/main.dart
import 'package:volorio_rte/volorio_rte.dart';
Future<void> sendReaction(VolorioRteClient rte) {
return rte.sendReaction(
roomId: 'room_example',
identity: 'user_example',
emoji: ':fire:',
);
}