(value: FIRStorageMetadata)
| 247 | } |
| 248 | |
| 249 | static fromNative(value: FIRStorageMetadata) { |
| 250 | if (value instanceof FIRStorageMetadata) { |
| 251 | const meta = new Metadata(); |
| 252 | meta._native = value; |
| 253 | return meta; |
| 254 | } |
| 255 | return null; |
| 256 | } |
| 257 | |
| 258 | get native() { |
| 259 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected