fix(patch-item): remove redundant patch version completely (#1059)

https://github.com/ReVanced/revanced-patches/pull/2709
This commit is contained in:
aAbed
2023-07-29 15:06:30 +05:45
committed by GitHub
parent c27ca08d3a
commit 096b315701
4 changed files with 1 additions and 14 deletions

View File

@ -8,7 +8,6 @@ class Patch {
Patch({
required this.name,
required this.description,
required this.version,
required this.excluded,
required this.dependencies,
required this.compatiblePackages,
@ -17,7 +16,6 @@ class Patch {
factory Patch.fromJson(Map<String, dynamic> json) => _$PatchFromJson(json);
final String name;
final String description;
final String version;
final bool excluded;
final List<String> dependencies;
final List<Package> compatiblePackages;