LogPlainFormat.custom constructor

const LogPlainFormat.custom({
  1. Iterable<String> start()?,
  2. required Iterable<String> format(
    1. LogEvent event
    ),
  3. Iterable<String> end()?,
})

custom implementation

custom logic

Implementation

const factory LogPlainFormat.custom({
  Iterable<String> Function()? start,
  required Iterable<String> Function(LogEvent event) format,
  Iterable<String> Function()? end,
}) = LogPlainFormatCustomImpl;