removeRemoteParticipant method
Removes a remote participant
Implementation
Future<void> removeRemoteParticipant(String id) async {
await remoteParticipants[id]?.renderer.dispose();
await remoteParticipants.remove(id)?.dispose();
onRemoveRemoteParticipant!(id);
}