sendbird_chat 0.0.2 copy "sendbird_chat: ^0.0.2" to clipboard
sendbird_chat: ^0.0.2 copied to clipboard

discontinuedreplaced by: sendbird_sdk

A flutter plugin for utilizing sendbird's chat platform API.

sendbird_chat #

A Flutter package for Android, iOS and web to utilize basic Sendbird API functionality to their applications.

Usage #

To use this package, add the dependency to your pubspec.yaml file:

dependencies:
    flutter:
        sdk: flutter
    sendbird_chat

Features #

  • List, Create & Delete users
  • List, Create & Delete open channels
  • List, Send open channel messages

How to use #

Initialize #

SendbirdChat chat = SendbirdChat(
                      applicationId: '',  // replace with your application id
                      apiToken: '');      // replace with your application API token (secondary recommended)

Creating a User #

chat.createUser(userId);

Creating an Open Channel #

chat.createOpenChannel(
    name: '<name_of_channel>', 
    userIds: ['user_id'])       // user ids of operators

Sending a Message #

chat.sendOpenChannelMessage(
        channelUrl: '<open_channels_url>',  // looks like sendbird_open_channel_XXXX_7c280d5d186be4ebf38a3e77b225040865eea22f
        originUserId: '<user_id_of_sender>',
        message: '<string_message>')

Getting Started #

For help modifying package code, view the plug-in package documentation, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

6
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A flutter plugin for utilizing sendbird's chat platform API.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on sendbird_chat