hold method

  1. @override
Future<void> hold({
  1. required String callsId,
})
override

Hold call with callsId

Implementation

@override
Future<void> hold({required String callsId}) async {
  return await methodChannel.invokeMethod('hold', {"callId": callsId});
}