FileLogFormatException constructor

const FileLogFormatException({
  1. required String operation,
  2. String? path,
  3. Object? cause,
  4. StackTrace? stackTrace,
})

Implementation

const FileLogFormatException({
  required super.operation,
  super.path,
  super.cause,
  super.stackTrace,
}) : super(kind: 'format');