VChatCloud Flutter SDK

License
Languages
Platform Platform Platform Platform Platform Platform

Usage

Add vchatcloud_flutter_sdk as a dependency in your pubspec.yaml file.

import 'package:vchatcloud_flutter_sdk/vchatcloud_flutter_sdk.dart';

class CustomHandler extends ChannelHandler {
  ...
}

void main() async {
  Channel channel = await VChatCloud.connect(CustomHandler());
  List<ChannelResultModel> history = await channel.join(...);
  channel.sendMessage("Hello VChatCloud!");
}

A more detailed usage guide is available on the VChatCloud Docs.