LogStreamFile constructor

const LogStreamFile({
  1. required String path,
  2. required int maxFileSize,
  3. required bool redirectStderr,
  4. dynamic extra,
  5. int? clientId,
})

The log is written to a file

Implementation

const LogStreamFile({
  required this.path,
  required this.maxFileSize,
  required this.redirectStderr,
  this.extra,
  this.clientId,
});