MCPcopy Create free account
hub / github.com/NativeScript/firebase / fromNative

Method fromNative

packages/firebase-firestore/index.android.ts:1443–1450  ·  view source on GitHub ↗
(data: com.google.firebase.firestore.Blob)

Source from the content-addressed store, hash-verified

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') {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected