()
| 29 | showNotificationsWhenInForeground: boolean; |
| 30 | _instance: MessagingCore; |
| 31 | constructor() { |
| 32 | if (defaultMessaging) { |
| 33 | return defaultMessaging; |
| 34 | } |
| 35 | defaultMessaging = this; |
| 36 | this._instance = MessagingCore.getInstance(); |
| 37 | } |
| 38 | |
| 39 | getToken(): Promise<string> { |
| 40 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected