(native: NSError, message?: string)
| 5 | export class FirebaseError extends Error { |
| 6 | _native: NSError; |
| 7 | static fromNative(native: NSError, message?: string) { |
| 8 | const error = new FirebaseError(message || native?.localizedDescription); |
| 9 | error._native = native; |
| 10 | return error; |
| 11 | } |
| 12 | |
| 13 | get native() { |
| 14 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected