LogOutput.custom constructor
const
LogOutput.custom({
- void init()?,
- void write(
- LogEvent event
- void close()?,
custom implementation
custom logic
Implementation
const factory LogOutput.custom({
void Function()? init,
void Function(LogEvent event)? write,
void Function()? close,
}) = LogOutputCustomImpl;