getInstalledApps method

Future<List<AppInfo>> getInstalledApps()

Fetches a list of all installed apps.

This method should be overridden by platform-specific implementations.

Implementation

Future<List<AppInfo>> getInstalledApps() async {
  throw UnimplementedError(
      'getInstalledAppsByProfile() has not been implemented.');
}