getInstalledApps method
Implementation
@override
Future<List<Object?>> getInstalledApps({bool showSystem = false}) async {
final apps = await methodChannel.invokeMethod<List<dynamic>>(
"getInstalledApps",
{"showSystem": showSystem},
);
return apps ?? [];
}