You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Call holding should be done server-side as suggested by @ryan-rowland here(https://github.com/twilio/twilio-voice.js/issues/32#issuecomment-1016872545)
@@ -669,6 +679,18 @@ class Call extends MethodChannelTwilioCall {
669
679
returnFuture.value(false);
670
680
}
671
681
682
+
/// Not currently implemented for web
683
+
@override
684
+
Future<bool> isHolding() {
685
+
returnFuture.value(false);
686
+
}
687
+
688
+
/// Not currently implemented for web
689
+
@override
690
+
Future<bool> isOnSpeaker() {
691
+
returnFuture.value(false);
692
+
}
693
+
672
694
/// Answers an inbound call. Returns true if successful, false otherwise.
0 commit comments