SourceLocation constructor

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

Implementation

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