(data: com.google.firebase.firestore.Blob)
| 1441 | _native: com.google.firebase.firestore.Blob; |
| 1442 | |
| 1443 | static fromNative(data: com.google.firebase.firestore.Blob) { |
| 1444 | if (data instanceof com.google.firebase.firestore.Blob) { |
| 1445 | const blob = new Bytes(); |
| 1446 | blob._native = data; |
| 1447 | return blob; |
| 1448 | } |
| 1449 | return null; |
| 1450 | } |
| 1451 | |
| 1452 | static fromBase64String(base64) { |
| 1453 | if (typeof base64 === 'string') { |
nothing calls this directly
no outgoing calls
no test coverage detected