removeCall method
Removes a peer call from group calls.
Implementation
Future<void> removeCall(CallSession call, String hangupReason) async {
await disposeCall(call, hangupReason);
calls.removeWhere((element) => call.callId == element.callId);
onGroupCallEvent.add(GroupCallEvent.CallsChanged);
}