VChatCloud Flutter SDK
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.
Libraries
- channel
- channel_handler
- constants
- model/channel_message_model
- model/channel_result_model
- model/chat_room_model
- model/common_result_model
- model/file_model
- model/google_translation_model
- model/open_graph_model
- model/upload_file_model
- model/user_model
- model/v_chat_cloud_error
- util
- v_chat_cloud
- v_chat_cloud_api
- vchatcloud_flutter_sdk