getMockedApps method

  1. @override
  2. @Deprecated("Use BorneoPackages instead.")
Future<List<String>> getMockedApps()
override

Retrieves a list of mocked apps installed on the device.

Implementation

@override
@Deprecated("Use BorneoPackages instead.")
Future<List<String>> getMockedApps() async {
  return methodChannel.invokeMethod("mockAppLocationList").then((value) {
    return List<String>.from(value);
  });
}