()
| 158 | this.native.autoInitEnabled = value; |
| 159 | } |
| 160 | get app(): FirebaseApp { |
| 161 | if (!this._app) { |
| 162 | // @ts-ignore |
| 163 | this._app = FirebaseApp.fromNative(FIRApp.defaultApp()); |
| 164 | } |
| 165 | return this._app; |
| 166 | } |
| 167 | |
| 168 | get native() { |
| 169 | return FIRMessaging.messaging(); |
nothing calls this directly
no test coverage detected