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

Method fromNative

packages/firebase-firestore/index.android.ts:1078–1085  ·  view source on GitHub ↗
(field: com.google.firebase.firestore.FieldPath)

Source from the content-addressed store, hash-verified

1076 }
1077
1078 static fromNative(field: com.google.firebase.firestore.FieldPath) {
1079 if (field instanceof com.google.firebase.firestore.FieldPath) {
1080 const path = new FieldPath([], true);
1081 path._native = field;
1082 return path;
1083 }
1084 return null;
1085 }
1086
1087 get native() {
1088 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected