toggleRaiseHand method

  1. @override
void toggleRaiseHand()
override

Implementation

@override
void toggleRaiseHand() {
  if (_mParticipant == null) return;

  _mParticipant!.isHandRaising = !_mParticipant!.isHandRaising;

  _notify(CallbackEvents.shouldBeUpdateState);

  _socketEmiter.setHandRaising(_mParticipant!.isHandRaising);
}