kick_chat

Last updated:

0 purchases

kick_chat Image
kick_chat Images
Add to Cart

Description:

kick chat

kick_chat #
💬 Flutter Package for Kick Chat
Usage #
Initialize the chat
KickChat kickChat = KickChat(
kc.channel,
onDone: () => {},
onError: () => {},
);
copied to clipboard
Connect to the chat
kickChat.connect();
copied to clipboard
Listen to new chat events
kickChat.chatStream.listen((message) {
final KickEvent? kickEvent = eventParser(message);
if (kickEvent?.event == TypeEvent.message) {
// your code
}
})
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.