isPipSupported method
Checks if Picture-in-Picture is supported on the device.
Implementation
Future<bool> isPipSupported() async {
try {
return await CometChatCallsPluginPlatform.instance.nativeIsPipSupported();
} catch (e) {
return false;
}
}