onUserRemoved method
Implementation
void onUserRemoved(
String callId, String userId, ChatCallKitCallEndReason reason) {
tools.log("ChatCallKitManagerImpl: onUserRemoved called, callId: $callId, userId: $userId, reason: $reason");
for (var value in handlers) {
value.onUserRemoved.call(callId, userId, reason);
}
}