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