MCPcopy Index your code
hub / github.com/NativeScript/firebase / fromNative

Method fromNative

packages/firebase-database/index.android.ts:148–155  ·  view source on GitHub ↗
(query: com.google.firebase.database.Query)

Source from the content-addressed store, hash-verified

146export class Query implements IQuery {
147 _native: com.google.firebase.database.Query;
148 static fromNative(query: com.google.firebase.database.Query) {
149 if (query instanceof com.google.firebase.database.Query) {
150 const q = new Query();
151 q._native = query;
152 return q;
153 }
154 return null;
155 }
156
157 get native() {
158 return this._native;

Callers 15

onErrorMethod · 0.45
refMethod · 0.45
endAtMethod · 0.45
equalToMethod · 0.45
limitToFirstMethod · 0.45
limitToLastMethod · 0.45
onDataChangeMethod · 0.45
onCancelledMethod · 0.45
onChildAddedMethod · 0.45
onChildChangedMethod · 0.45
onChildRemovedMethod · 0.45
onChildMovedMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected