SentryStackFrame constructor
SentryStackFrame({
- String? absPath,
- String? fileName,
- String? function,
- String? module,
- int? lineNo,
- int? colNo,
- String? contextLine,
- bool? inApp,
- String? package,
- bool? native,
- String? platform,
- String? imageAddr,
- String? symbolAddr,
- String? instructionAddr,
- String? rawFunction,
- bool? stackStart,
- String? symbol,
- List<
int> ? framesOmitted, - List<
String> ? preContext, - List<
String> ? postContext, - Map<
String, dynamic> ? vars, - Map<
String, dynamic> ? unknown,
Implementation
SentryStackFrame({
this.absPath,
this.fileName,
this.function,
this.module,
this.lineNo,
this.colNo,
this.contextLine,
this.inApp,
this.package,
this.native,
this.platform,
this.imageAddr,
this.symbolAddr,
this.instructionAddr,
this.rawFunction,
this.stackStart,
this.symbol,
List<int>? framesOmitted,
List<String>? preContext,
List<String>? postContext,
Map<String, dynamic>? vars,
this.unknown,
}) : _framesOmitted =
framesOmitted != null ? List.from(framesOmitted) : null,
_preContext = preContext != null ? List.from(preContext) : null,
_postContext = postContext != null ? List.from(postContext) : null,
_vars = vars != null ? Map.from(vars) : null;