LogEntrySourceLocation constructor

LogEntrySourceLocation({
  1. String? file,
  2. String? function,
  3. String? line,
})

Implementation

LogEntrySourceLocation({
  this.file,
  this.function,
  this.line,
});