removeChatCallMember method

Future<ChatEventsVersionedMixin?> removeChatCallMember(
  1. ChatId chatId,
  2. UserId userId
)

Removes the specified User from the ChatCall of the specified Chat-group by authority of the authenticated MyUser.

If the specified User participates in the ChatCall from multiple devices simultaneously, then removes all the devices at once.

Lowers the specified User's hand raised by toggleChatCallHand, if any.

Authentication

Mandatory.

Result

The following ChatEvents may be produced on success:

Idempotent

Succeeds as no-op (and returns no ChatEvent) if the specified User is not a ChatCallMember of the specified ChatCall already.

Implementation

Future<ChatEventsVersionedMixin?> removeChatCallMember(
  ChatId chatId,
  UserId userId,
) async {
  Log.debug('removeChatCallMember($chatId, $userId)', '$runtimeType');

  final variables = RemoveChatCallMemberArguments(
    chatId: chatId,
    userId: userId,
  );
  final QueryResult result = await client.mutate(
    MutationOptions(
      operationName: 'RemoveChatCallMember',
      document: RemoveChatCallMemberMutation(variables: variables).document,
      variables: variables.toJson(),
    ),
    onException:
        (data) => RemoveChatCallMemberException(
          (RemoveChatCallMember$Mutation.fromJson(data).removeChatCallMember
                  as RemoveChatCallMember$Mutation$RemoveChatCallMember$RemoveChatCallMemberError)
              .code,
        ),
  );
  return (RemoveChatCallMember$Mutation.fromJson(
        result.data!,
      ).removeChatCallMember
      as ChatEventsVersionedMixin?);
}