mfereji 1.0.0 mfereji: ^1.0.0 copied to clipboard
Dart client to communicate with Chatsasa API from Flutter and Dart VM over WebSockets
Docs and Usage #
It provides a websocket connection to mfereji. Initialize the SDK using the following code.
import 'package:mfereji/mfereji.dart' as mfereji;
void init(){
_client = mfereji.createClient(
AppConfig.mferejiPresenceConnectUrl,
mfereji.ClientConfig(
token: chatToken,
),
);
}