hasMockedApps method

  1. @override
  2. @Deprecated("Use BorneoPackages instead.")
Future<bool> hasMockedApps()
override

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;
  });
}