Simply implement snippet running.

This commit is contained in:
LollipopKit
2021-11-06 14:05:03 +08:00
parent 7c34530821
commit e0fb591dea
17 changed files with 305 additions and 34 deletions

View File

@@ -5,5 +5,11 @@ class Memory {
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});
Memory(
{required this.total,
required this.used,
required this.free,
required this.shared,
required this.cache,
required this.avail});
}