This commit is contained in:
lollipopkit
2023-01-28 21:16:53 +08:00
parent be1a162632
commit a518dca0ca
19 changed files with 269 additions and 247 deletions

View File

@@ -1,3 +1,11 @@
get initMemory => Memory(
total: 1,
used: 0,
free: 1,
cache: 0,
avail: 1,
);
class Memory {
int total;
int used;