volorio_rtm 0.2.1
volorio_rtm: ^0.2.1 copied to clipboard
Volorio realtime messaging for Flutter, backed by the active Volorio RTC data channel.
example/main.dart
import 'package:volorio_rtm/volorio_rtm.dart';
Future<void> publishPresence(VolorioRtmClient rtm) {
return rtm.setPresence(
'room:example',
const VolorioRtmPresence(identity: 'user_example', status: 'online'),
);
}