feat: call Installer through Home View

This commit is contained in:
Alberto Ponces
2022-08-17 18:44:27 +01:00
parent 750f035104
commit 40f27b3a09
10 changed files with 139 additions and 78 deletions

View File

@@ -18,7 +18,7 @@ class PatchedApplication {
final DateTime patchDate;
final bool isRooted;
final bool isFromStorage;
final List<String> appliedPatches;
List<String> appliedPatches;
PatchedApplication({
required this.name,
@@ -29,7 +29,7 @@ class PatchedApplication {
required this.patchDate,
required this.isRooted,
required this.isFromStorage,
this.appliedPatches = const <String>[],
required this.appliedPatches,
});
factory PatchedApplication.fromJson(Map<String, dynamic> json) =>