holdCall method
Holds active call
holdCall
is respected in web only, in native it will always toggle the hold state.
In future, native mobile will also respect the holdCall
value.
Implementation
@override
Future<bool?> holdCall({bool holdCall = true}) {
return _channel.invokeMethod('holdCall', <String, dynamic>{"shouldHold": holdCall});
}