exolve_voice_sdk 0.0.4 exolve_voice_sdk: ^0.0.4 copied to clipboard
Flutter plugin for Exolve Voice SDK provides voice call capabilites to your application
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add exolve_voice_sdk
With Flutter:
$ flutter pub add exolve_voice_sdk
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
exolve_voice_sdk: ^0.0.4
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:exolve_voice_sdk/call/call.dart';
import 'package:exolve_voice_sdk/call/call_channel.dart';
import 'package:exolve_voice_sdk/call/call_error.dart';
import 'package:exolve_voice_sdk/call/call_event.dart';
import 'package:exolve_voice_sdk/call/call_platform.dart';
import 'package:exolve_voice_sdk/call/call_state.dart';
import 'package:exolve_voice_sdk/communicator/call_client.dart';
import 'package:exolve_voice_sdk/communicator/call_client_channel.dart';
import 'package:exolve_voice_sdk/communicator/call_client_platform.dart';
import 'package:exolve_voice_sdk/communicator/configuration.dart';
import 'package:exolve_voice_sdk/communicator/registration/registration_error.dart';
import 'package:exolve_voice_sdk/communicator/registration/registration_event.dart';
import 'package:exolve_voice_sdk/communicator/registration/registration_state.dart';
import 'package:exolve_voice_sdk/utils/utils.dart';