constraint: share_plus 6.3.2

This commit is contained in:
lollipopkit
2023-05-08 17:43:25 +08:00
parent 6a4d4f9bca
commit 3f9f589178
7 changed files with 15 additions and 51 deletions

View File

@@ -4,12 +4,13 @@ class Memory {
int free;
int cache;
int avail;
Memory(
{required this.total,
required this.used,
required this.free,
required this.cache,
required this.avail});
Memory({
required this.total,
required this.used,
required this.free,
required this.cache,
required this.avail,
});
}
final memItemReg = RegExp(r'([A-Z].+:)\s+([0-9]+) kB');