Adam-Langley / flutter_twilio_voice

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_twilio_voice

Provides an interface to Twilio's Programmable Voice SDK to allow voice-over-IP (VoIP) calling into your Flutter applications.

Configure Server to Generate Access Token

View Twilio Documentation on Access Token Generation: https://www.twilio.com/docs/iam/access-tokens

Make a Call

 await FlutterTwilioVoice.makeCall(to: "$client_identifier_or_number_to_call",
                   accessTokenUrl: "https://${YOUR-SERVER-URL}/accesstoken");

Mute a Call

 await FlutterTwilioVoice.muteCall(isMuted: true);

Toggle Speaker

 await FlutterTwilioVoice.toggleSpeaker(speakerIsOn: true);

Hang Up

 await FlutterTwilioVoice.hangUp();

Client Setup to Receive Calls

 await FlutterTwilioVoice.receiveCalls(clientIdentifier: 'alice');

Listen for Call Events

FlutterTwilioVoice.phoneCallEventSubscription.listen((data) 
    {
      setState(() {
        _callStatus = data.toString();
      });
    }, onError: (error) {
      setState(() {
        print(error);
      });
    });
    

To Do

  1. Android Support
  2. Propagate Events and Call Status Notifications to Flutter

About

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Java 56.4%Language:Swift 25.1%Language:Dart 15.6%Language:Ruby 2.2%Language:Shell 0.5%Language:Objective-C 0.3%