(message: string)
| 68 | return this.native.didCrashOnPreviousExecution(); |
| 69 | } |
| 70 | log(message: string): void { |
| 71 | this.native.log(message); |
| 72 | } |
| 73 | recordError(error: any): void { |
| 74 | if (error instanceof Error) { |
| 75 | StackTrace.fromError(error).then((stack) => { |