toggleHand method
override
Raises/lowers a hand of the authenticated MyUser in the specified ChatCall.
Implementation
@override
Future<void> toggleHand(ChatId chatId, bool raised) async {
Log.debug('toggleHand($chatId, $raised)', '$runtimeType');
await _graphQlProvider.toggleChatCallHand(chatId, raised);
}