SourceLocation constructor

SourceLocation({
  1. String? filePath,
  2. int? lineNumber,
  3. String? functionName,
})

Implementation

SourceLocation({
  this.filePath,
  this.lineNumber,
  this.functionName,
});