()
| 164 | } |
| 165 | |
| 166 | get native() { |
| 167 | return this._native |
| 168 | .setUrl(this.url || '') |
| 169 | .setIOSBundleId(this.iOSBundleId || '') |
| 170 | .setHandleCodeInApp(this.handleCodeInApp || false) |
| 171 | .setDynamicLinkDomain(this.dynamicLinkDomain || '') |
| 172 | .setAndroidPackageName(this.androidPackageName || '', this.androidInstallIfNotAvailable || false, this.androidMinimumVersion || '') |
| 173 | .build(); |
| 174 | } |
| 175 | |
| 176 | get android() { |
| 177 | return this.native; |
nothing calls this directly
no outgoing calls
no test coverage detected