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