toggleHold method
Implementation
bool toggleHold({String? callId}) {
UnimplementedError('Hold not implement yet');
return false;
// if (callId == null) {
// if (!callCurrentIsEmpty()) {
// if (_calls[_callIdCurrent] != null) {
// if (hold) {
// _calls[_callIdCurrent]!.unhold();
// } else {
// _calls[_callIdCurrent]!.hold();
// }
// return true;
// }
// return false;
// } else {
// _logger.error('You have to set callIdCurrent or pass param callId');
// return false;
// }
// } else {
// if (_calls[callId] != null) {
// if (hold) {
// _calls[callId]!.unhold();
// } else {
// _calls[callId]!.hold();
// }
// return true;
// }
// return false;
// }
}