Update memList to Memory

This commit is contained in:
LollipopKit
2021-11-02 19:21:04 +08:00
parent 9e73dd07ca
commit d38bad7802
8 changed files with 50 additions and 22 deletions

View File

@@ -0,0 +1,9 @@
class Memory {
int total;
int used;
int free;
int shared;
int cache;
int avail;
Memory({required this.total, required this.used, required this.free, required this.shared, required this.cache, required this.avail});
}