fix: preferTempDev

This commit is contained in:
lollipopkit
2024-04-21 11:57:51 +08:00
parent a0ea95b1c3
commit d94b2a7805
6 changed files with 50 additions and 39 deletions

View File

@@ -10,12 +10,12 @@ final class ServerCustom {
final String? pveAddr;
@HiveField(2, defaultValue: false)
final bool pveIgnoreCert;
@HiveField(3)
final String? preferTempDev;
/// {"title": "cmd"}
@HiveField(3)
final Map<String, String>? cmds;
@HiveField(4)
final String? preferTempDev;
const ServerCustom({
//this.temperature,
@@ -58,4 +58,9 @@ final class ServerCustom {
}
return json;
}
@override
String toString() {
return toJson().toString();
}
}