holdCall method

  1. @override
Future<bool?> holdCall({
  1. bool holdCall = true,
})
override

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});
}