leaveChatCall method
- ChatId chatId,
- ChatCallDeviceId deviceId
Leaves the ongoing ChatCall in the specified Chat by the authenticated MyUser.
Use this mutation when the authenticated MyUser wants to finish or leave the ChatCall he's participating in at the moment.
Authentication
Mandatory.
Result
One of the following ChatEvents may be produced on success:
- EventChatCallMemberLeft (for Chat-groups);
- EventChatCallFinished (for Chat-dialogs).
Idempotent
Succeeds as no-op (and returns no ChatEvent) if there is no ongoing ChatCall in the specified Chat at the moment, or the authenticated MyUser is not a member of it already.
Implementation
Future<ChatEventsVersionedMixin?> leaveChatCall(
ChatId chatId,
ChatCallDeviceId deviceId,
) async {
Log.debug('leaveChatCall($chatId, $deviceId)', '$runtimeType');
final variables = LeaveCallArguments(chatId: chatId, deviceId: deviceId);
final QueryResult result = await client.mutate(
MutationOptions(
operationName: 'LeaveCall',
document: LeaveCallMutation(variables: variables).document,
variables: variables.toJson(),
),
onException:
(data) => LeaveChatCallException(
(LeaveCall$Mutation.fromJson(data).leaveChatCall
as LeaveCall$Mutation$LeaveChatCall$LeaveChatCallError)
.code,
),
);
return (LeaveCall$Mutation.fromJson(result.data!).leaveChatCall
as ChatEventsVersionedMixin?);
}