hasMockedApps method
Checks if there are any mocked apps installed on the device.
Returns true if mocked apps are detected, otherwise false.
Implementation
@override
@Deprecated("Use BorneoPackages instead.")
Future<bool> hasMockedApps() async {
return methodChannel.invokeMethod("hasMockAppLocation").then((value) {
return value;
});
}