getApplications property
Returns an Applications object with AppInfo of apps installed on the user's device.
Implementation
static Future<Applications> get getApplications async {
List data = await _channel.invokeMethod('getAllApps');
return Applications(data);
}