LogFile constructor

const LogFile({
  1. required String name,
  2. FileType? type,
  3. String? path,
})

Implementation

const LogFile({
  required this.name,
  this.type,
  this.path,
});