(value: FIRStorageTaskSnapshot)
| 27 | _native: FIRStorageTaskSnapshot; |
| 28 | |
| 29 | static fromNative(value: FIRStorageTaskSnapshot) { |
| 30 | if (value instanceof FIRStorageTaskSnapshot) { |
| 31 | const ss = new TaskSnapshot(); |
| 32 | ss._native = value; |
| 33 | return ss; |
| 34 | } |
| 35 | return null; |
| 36 | } |
| 37 | |
| 38 | get native() { |
| 39 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected