Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 434 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 434 Bytes

kick_chat

💬 Flutter Package for Kick Chat

Usage

Initialize the chat

KickChat kickChat = KickChat(
  kc.channel,
  onDone: () => {},
  onError: () => {},
);

Connect to the chat

kickChat.connect();

Listen to new chat events

kickChat.chatStream.listen((message) {
  final KickEvent? kickEvent = eventParser(message);
  if (kickEvent?.event == TypeEvent.message) {
    // your code
  }
})