(host: string, port: number)
| 180 | } |
| 181 | |
| 182 | useEmulator(host: string, port: number) { |
| 183 | this.native.useEmulator(host === 'localhost' || host === '127.0.0.1' ? '10.0.2.2' : host, port); |
| 184 | } |
| 185 | |
| 186 | get native() { |
| 187 | return this._native; |
nothing calls this directly
no test coverage detected