()
| 31 | _onNotificationTap?: (message: RemoteMessage) => void; |
| 32 | _instance: MessagingCore; |
| 33 | constructor() { |
| 34 | if (defaultMessaging) { |
| 35 | return defaultMessaging; |
| 36 | } |
| 37 | defaultMessaging = this; |
| 38 | this._instance = MessagingCore.getInstance(); |
| 39 | } |
| 40 | |
| 41 | get showNotificationsWhenInForeground(): boolean { |
| 42 | return NSCFirebaseMessagingCore.showNotificationsWhenInForeground; |
nothing calls this directly
no test coverage detected