onUserRemoved method

void onUserRemoved(
  1. String callId,
  2. String userId,
  3. ChatCallKitCallEndReason reason
)

Implementation

void onUserRemoved(
    String callId, String userId, ChatCallKitCallEndReason reason) {
  for (var value in handlers) {
    value.onUserRemoved.call(callId, userId, reason);
  }
}