LogOutput.custom constructor

const LogOutput.custom({
  1. void init()?,
  2. void write(
    1. LogEvent event
    )?,
  3. void close()?,
})

custom implementation

custom logic

Implementation

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