(value: FIRRemoteConfigValue)
| 21 | export class ConfigValue implements IConfigValue { |
| 22 | _native: FIRRemoteConfigValue; |
| 23 | static fromNative(value: FIRRemoteConfigValue) { |
| 24 | if (value instanceof FIRRemoteConfigValue) { |
| 25 | const val = new ConfigValue(); |
| 26 | val._native = value; |
| 27 | return val; |
| 28 | } |
| 29 | return null; |
| 30 | } |
| 31 | |
| 32 | get native() { |
| 33 | return this._native; |
no outgoing calls
no test coverage detected