Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.