lowerHand method
Lowers hand.
Implementation
Future<void> lowerHand() async {
try {
await CometChatCallsPluginPlatform.instance.nativeLowerHand();
_isHandRaised = false;
} catch (e) {
throw CometChatCallsException(
ErrorCodeConstants.errorLowerHand,
'Failed to lower hand',
e.toString(),
);
}
}