处理兼容性问题

处理兼容性问题
This commit is contained in:
Zeus
2023-12-05 09:48:08 +08:00
parent a21a4e7f77
commit fa787018df
641 changed files with 29065 additions and 28 deletions
+3 -3
View File
@@ -58,15 +58,15 @@ class ServerEntity {
name: json["name"],
rate: json["rate"],
host: json["host"],
port: json["port"],
port: json["port"] ?? "",
serverPort: json["server_port"],
cipher: json["cipher"],
cipher: json["cipher"] ?? "" ,
show: json["show"],
sort: json["sort"],
createdAt: json["created_at"],
updatedAt: json["updated_at"],
type: json["type"],
lastCheckAt: json["last_check_at"] ?? "",
lastCheckAt: "",//json["last_check_at"] +
);
Map<String, dynamic> toMap() => {