pauseVideo method
Pauses video for the local user.
Implementation
Future<void> pauseVideo() async {
try {
await CometChatCallsPluginPlatform.instance.nativePauseVideo();
_isVideoPaused = true;
} catch (e) {
throw CometChatCallsException(
ErrorCodeConstants.errorPauseVideo,
'Failed to pause video',
e.toString(),
);
}
}