feat: clear log

This commit is contained in:
cialloo
2024-07-24 22:55:35 +08:00
parent 5ac19aeac6
commit c2230dbac6
4 changed files with 30 additions and 8 deletions

View File

@@ -17,4 +17,9 @@ class EdgeLogger with ChangeNotifier {
logList.add(log);
notifyListeners();
}
void clearLog() {
logList.clear();
notifyListeners();
}
}