StackFrame constructor
Creates a new StackFrame instance.
The className may be the empty string if there is no class (e.g. for a top level library method).
Implementation
const StackFrame({
required this.number,
required this.column,
required this.line,
required this.packageScheme,
required this.package,
required this.packagePath,
this.className = '',
required this.method,
this.isConstructor = false,
required this.source,
});