toggleHand method

Future<void> toggleHand(
  1. ChatId chatId,
  2. bool raised
)

Raises/lowers a hand of the authenticated MyUser in the OngoingCall identified by the given chatId.

Implementation

Future<void> toggleHand(ChatId chatId, bool raised) async {
  Log.debug('toggleHand($chatId, $raised)', '$runtimeType');

  final Rx<OngoingCall>? call = _callsRepo[chatId];
  if (call != null) {
    await _callsRepo.toggleHand(chatId, raised);
  }
}