getAppList static method

Future<List<AppList>> getAppList()

only Android

Implementation

static Future<List<AppList>> getAppList() async {
  Iterable appLists =
      (await _channel.invokeListMethod("getAppList")) as Iterable;
  return appLists.map((m) => AppList.fromMap(m)).toList();
}