getAppList property

Future<String?> getAppList

Implementation

static Future<String?> get getAppList async {
  final Object? appList = await _channel.invokeMethod('getAppList');
  return appList.toString();
}