(settings: FIRActionCodeSettings)
| 97 | _native: FIRActionCodeSettings; |
| 98 | |
| 99 | static fromNative(settings: FIRActionCodeSettings) { |
| 100 | if (settings instanceof FIRActionCodeSettings) { |
| 101 | const nativeSettings = new ActionCodeSettings(); |
| 102 | nativeSettings._native = settings; |
| 103 | return nativeSettings; |
| 104 | } |
| 105 | return null; |
| 106 | } |
| 107 | |
| 108 | get androidInstallIfNotAvailable(): boolean { |
| 109 | return this.native?.androidInstallIfNotAvailable; |
nothing calls this directly
no outgoing calls
no test coverage detected