getApps property

Future<List> getApps

Returns a list of apps installed on the user's device

Implementation

@deprecated
static Future<List> get getApps async {
  var data = await _channel.invokeMethod('getAllApps');
  return data;
}