Webex Flutter Plugin

🚀 Webex Flutter Plugin is a Flutter plugin designed to enable seamless video calling using the Webex Android SDK. Currently, it supports Android and allows developers to initiate video calls by passing a phone number from the Flutter side.


📢 Demo


Features

  • 📞 Initiate Video Calls: Simply provide a number from Flutter, and the plugin takes care of starting a Webex video call.
  • 💻 Android Support: Built for Android using Webex SDK.

Installation

Add the plugin to your pubspec.yaml file:

dependencies:
  webex_flutter_plugin: ^latest version

Fast Use:

  initPlatformState() async {
    try {
      await _webexFlutterPlugin.startWebexCalling(
          callerId: _phoneController.text.trim(), jwtToken: 'JWT Token');
    } on PlatformException {
      debugPrint('Something went wrong');
    }

    if (!mounted) return;
  }