endCall static method
Implementation
static Future endCall({required Call call, required status}) async {
try {
await _callCollection.doc(call.callerId).delete();
await _callCollection.doc(call.receiverId).delete();
await updateCallState(call.channelId, status: status);
} catch (e) {}
}