(host: string, port: number)
| 647 | } |
| 648 | |
| 649 | useEmulator(host: string, port: number) { |
| 650 | this.native.useEmulator(host === 'localhost' || host === '127.0.0.1' ? '10.0.2.2' : host, port); |
| 651 | } |
| 652 | |
| 653 | _persistenceCacheSizeBytes = 10 * 1024 * 1024; |
| 654 | get persistenceCacheSizeBytes(): number { |
nothing calls this directly
no test coverage detected