Will display the exception of Server Connection

This commit is contained in:
LollipopKit
2021-11-08 19:13:24 +08:00
parent e0fb591dea
commit 89ef2cb95c
4 changed files with 7 additions and 5 deletions

View File

@@ -37,7 +37,8 @@ class ServerStatus {
List<DiskInfo> disk;
TcpStatus tcp;
NetSpeed netSpeed;
String? failedInfo;
ServerStatus(this.cpu2Status, this.memory, this.sysVer, this.uptime,
this.disk, this.tcp, this.netSpeed);
this.disk, this.tcp, this.netSpeed, {this.failedInfo});
}