(key: string)
| 236 | return this.getValue(key)?.asNumber?.(); |
| 237 | } |
| 238 | getString(key: string): string { |
| 239 | return this.getValue(key)?.asString?.(); |
| 240 | } |
| 241 | getValue(key: string) { |
| 242 | return ConfigValue.fromNative(this.native.configValueForKey(key)); |
| 243 | } |