()
| 618 | } |
| 619 | |
| 620 | get native() { |
| 621 | return this._native |
| 622 | .setUrl(this.url || '') |
| 623 | .setIOSBundleId(this.iOSBundleId || '') |
| 624 | .setHandleCodeInApp(this.handleCodeInApp || false) |
| 625 | .setDynamicLinkDomain(this.dynamicLinkDomain || '') |
| 626 | .setAndroidPackageName(this.androidPackageName || '', this.androidInstallIfNotAvailable || false, this.androidMinimumVersion || '') |
| 627 | .build(); |
| 628 | } |
| 629 | |
| 630 | get android() { |
| 631 | return this.native; |
nothing calls this directly
no outgoing calls
no test coverage detected