Update download mods function with more feedback

This commit is contained in:
zontreck 2023-11-04 14:16:53 -07:00
parent d8345d08fa
commit 239eac82b2
2 changed files with 19 additions and 9 deletions

View file

@ -5,17 +5,17 @@ part 'mod.g.dart';
@HiveType(typeId: 2)
class Mod {
@HiveField(0)
String mod_name;
@HiveField(0, defaultValue: "")
String mod_name = "";
@HiveField(1)
int mod_id;
@HiveField(1, defaultValue: 0)
int mod_id = 0;
@HiveField(2)
String mod_pak;
@HiveField(2, defaultValue: "")
String mod_pak = "";
@HiveField(3)
String mod_hash;
@HiveField(3, defaultValue: "")
String mod_hash = "";
bool newMod = false;
String _id = "";