Skip to content

Commit 551f6e6

Browse files
committed
Update README.md
1 parent af72ec7 commit 551f6e6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ Example project: [GitHub](https://github.com/sharmadhiraj/installed_apps/tree/ma
4949
List<AppInfo> apps = await InstalledApps.getInstalledApps(
5050
// Optional: whether to exclude system apps from the list. Default is true.
5151
excludeSystemApps: true,
52-
52+
5353
// Optional: whether to exclude apps that cannot be launched (no launch intent). Default is true.
5454
excludeNonLaunchableApps: true,
55-
55+
5656
// Optional: whether to include app icons in the result. Default is false.
5757
withIcon: false,
58-
58+
5959
// Optional: filter apps whose package names start with this prefix. Default is null (no filtering).
6060
packageNamePrefix: "com.example",
61-
61+
6262
// Optional: filter apps by platform type (Flutter, React Native, etc.). Default is null (no filtering).
6363
platformType: PlatformType.flutter,
6464
);
@@ -83,6 +83,7 @@ class AppInfo {
8383
int installedTimestamp;
8484
bool isSystemApp;
8585
bool isLaunchableApp;
86+
List<String> certificateHashes;
8687
}
8788
```
8889

0 commit comments

Comments
 (0)