LogPlainOutput.custom constructor

const LogPlainOutput.custom({
  1. void init()?,
  2. void write(
    1. Iterable<String> list
    )?,
  3. void close()?,
})

custom implementation

custom logic

Implementation

const factory LogPlainOutput.custom({
  void Function()? init,
  void Function(Iterable<String> list)? write,
  void Function()? close,
}) = LogPlainOutputCustomImpl;