()
| 600 | } |
| 601 | |
| 602 | signOut() { |
| 603 | return new Promise<void>((resolve, reject) => { |
| 604 | try { |
| 605 | this.native.signOutWithError(); |
| 606 | resolve(); |
| 607 | } catch (error) { |
| 608 | reject(FirebaseError.fromNative(error.message)); |
| 609 | } |
| 610 | }); |
| 611 | } |
| 612 | } |
nothing calls this directly
no test coverage detected