raiseHand method

Future<void> raiseHand()

Raises hand to indicate wanting to speak.

Implementation

Future<void> raiseHand() async {
  try {
    await CometChatCallsPluginPlatform.instance.nativeRaiseHand();
    _isHandRaised = true;
  } catch (e) {
    throw CometChatCallsException(
      ErrorCodeConstants.errorRaiseHand,
      'Failed to raise hand',
      e.toString(),
    );
  }
}