(settings: FIRActionCodeSettings)
| 550 | _native: FIRActionCodeSettings; |
| 551 | |
| 552 | static fromNative(settings: FIRActionCodeSettings) { |
| 553 | if (settings instanceof FIRActionCodeSettings) { |
| 554 | const nativeSettings = new ActionCodeSettings(); |
| 555 | nativeSettings._native = settings; |
| 556 | return nativeSettings; |
| 557 | } |
| 558 | return null; |
| 559 | } |
| 560 | |
| 561 | get androidInstallIfNotAvailable(): boolean { |
| 562 | return this.native?.androidInstallIfNotAvailable; |
nothing calls this directly
no outgoing calls
no test coverage detected