LogPlainOutput.file constructor

LogPlainOutput.file({
  1. required String path,
  2. String prefix,
  3. String postfix,
  4. String ext,
})

file implementation

path is directory path

output to a file

Implementation

factory LogPlainOutput.file({
  required String path,
  String prefix,
  String postfix,
  String ext,
}) = LogPlainOutputFileImpl;