支持flutter调用

This commit is contained in:
2025-01-15 09:55:42 +08:00
parent 234d8ea7ca
commit 0fee2d7f69
7 changed files with 88 additions and 17 deletions

View File

@@ -22,5 +22,7 @@ abstract class Logger {
class LoggerConfig {
String host;
String serviceName;
LoggerConfig({required this.host, required this.serviceName});
bool print;
LoggerConfig(
{required this.host, required this.serviceName, this.print = false});
}