BugsnagStackframe constructor

BugsnagStackframe({
  1. BugsnagErrorType? type,
  2. String? file,
  3. int? lineNumber,
  4. int? columnNumber,
  5. String? method,
  6. bool? inProject,
  7. String? frameAddress,
  8. String? loadAddress,
  9. bool? isLR,
  10. bool? isPC,
  11. String? symbolAddress,
  12. String? machoFile,
  13. String? machoLoadAddress,
  14. String? machoUUID,
  15. String? machoVMAddress,
  16. String? codeIdentifier,
})

Implementation

BugsnagStackframe({
  this.type,
  this.file,
  this.lineNumber,
  this.columnNumber,
  this.method,
  this.inProject,
  this.frameAddress,
  this.loadAddress,
  this.isLR,
  this.isPC,
  this.symbolAddress,
  this.machoFile,
  this.machoLoadAddress,
  this.machoUUID,
  this.machoVMAddress,
  this.codeIdentifier,
});