toggleHand method

  1. @override
Future<void> toggleHand(
  1. ChatId chatId,
  2. bool raised
)
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);
}