enterPipMode method
Enters system Picture-in-Picture mode. Returns true if PiP was entered successfully.
Implementation
Future<bool> enterPipMode() async {
try {
return await CometChatCallsPluginPlatform.instance.nativeEnterPipMode();
} catch (e) {
throw CometChatCallsException(
ErrorCodeConstants.errorEnablePictureInPictureLayout,
'Failed to enter PiP mode',
e.toString(),
);
}
}