()
| 607 | } |
| 608 | |
| 609 | get app(): FirebaseApp { |
| 610 | if (!this._app) { |
| 611 | // @ts-ignore |
| 612 | this._app = FirebaseApp.fromNative(this.native.app); |
| 613 | } |
| 614 | return this._app; |
| 615 | } |
| 616 | |
| 617 | get maxDownloadRetryTime(): number { |
| 618 | return this.native?.maxDownloadRetryTime; |
nothing calls this directly
no test coverage detected