enterPIPMode method
Implementation
@override
void enterPIPMode(onSuccess, onError) async {
try {
final result = await methodChannel.invokeMethod<String>('enterPIPMode');
onSuccess(result ?? "success");
} on PlatformException catch (platformException) {
onError(CometChatCallsException(platformException.code,
platformException.message, platformException.details));
} catch (e) {
onError(CometChatCallsException(
CometChatCallsConstants.codeError, e.toString(), e.toString()));
}
}