log static method
Writes a timestamped message to the log file.
Implementation
static void log(String message) {
_sink?.writeln('[${DateTime.now()}] $message');
}
Writes a timestamped message to the log file.
static void log(String message) {
_sink?.writeln('[${DateTime.now()}] $message');
}