DevCodeSpace / twilio_voice_flutter

Voice SDK to allow adding voice-over-IP (VoIP) calling into your Flutter applications.
MIT License
1 stars 1 forks source link

How to get call SID? #5

Closed Dinesh-Sowndar closed 3 weeks ago

DevCodeSpace commented 3 weeks ago

@Dinesh-Sowndar You can retrieve the Call SID from the TwilioVoiceFlutterCall object, which is part of the TwilioVoiceFlutterEvent event listener, using the id property. Please note that the Call SID will be null until the call is in the RINGING state.

Dinesh-Sowndar commented 3 weeks ago

@DevCodeSpace It works. Thank you