()
| 63 | } |
| 64 | |
| 65 | getAPNSToken() { |
| 66 | const token = this.native.APNSToken; |
| 67 | if (!token) { |
| 68 | return null; |
| 69 | } |
| 70 | return NSCFirebaseMessagingCore.APNSTokenToString(token); |
| 71 | } |
| 72 | |
| 73 | hasPermission(): Promise<AuthorizationStatus> { |
| 74 | return this._instance.hasPermission() as any; |
nothing calls this directly
no outgoing calls
no test coverage detected