(value: FIRStorageListResult)
| 198 | _native: FIRStorageListResult; |
| 199 | |
| 200 | static fromNative(value: FIRStorageListResult) { |
| 201 | if (value instanceof FIRStorageListResult) { |
| 202 | const list = new ListResult(); |
| 203 | list._native = value; |
| 204 | return list; |
| 205 | } |
| 206 | return null; |
| 207 | } |
| 208 | |
| 209 | get native() { |
| 210 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected