getApps method
Implementation
@override
Future<List<AppInfo>> getApps({bool includeSystemApps = false}) async {
final List<dynamic> result = await methodChannel.invokeMethod('getApps', {"includeSystemApps": includeSystemApps});
List<AppInfo> ourApps = result.map((e) => AppInfo.fromAndroidData(e)).toList();
return ourApps;
}