SentryStackFrame constructor

SentryStackFrame({
  1. String? absPath,
  2. String? fileName,
  3. String? function,
  4. String? module,
  5. int? lineNo,
  6. int? colNo,
  7. String? contextLine,
  8. bool? inApp,
  9. String? package,
  10. bool? native,
  11. String? platform,
  12. String? imageAddr,
  13. String? symbolAddr,
  14. String? instructionAddr,
  15. String? rawFunction,
  16. bool? stackStart,
  17. String? symbol,
  18. List<int>? framesOmitted,
  19. List<String>? preContext,
  20. List<String>? postContext,
  21. Map<String, dynamic>? vars,
})

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,
})  : _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;