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

Method equalTo

packages/firebase-database/index.android.ts:175–181  ·  view source on GitHub ↗
(value: string | number | boolean, key?: string)

Source from the content-addressed store, hash-verified

173 }
174 }
175 equalTo(value: string | number | boolean, key?: string): Query {
176 if (key) {
177 return Query.fromNative(this.native.equalTo(value as any, key));
178 } else {
179 return Query.fromNative(this.native.equalTo(value as any));
180 }
181 }
182 keepSynced(bool: boolean) {
183 this.native?.keepSynced?.(bool);
184 }

Callers

nothing calls this directly

Calls 2

equalToMethod · 0.65
fromNativeMethod · 0.45

Tested by

no test coverage detected