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

Method equalTo

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

Source from the content-addressed store, hash-verified

218 }
219
220 equalTo(value: string | number | boolean, key?: string): Query {
221 if (key) {
222 return Query.fromNative(this.native.queryEqualToValueChildKey(value, key));
223 } else {
224 return Query.fromNative(this.native.queryEqualToValue(value));
225 }
226 }
227
228 keepSynced(bool: boolean) {
229 this.native?.keepSynced?.(bool);

Callers

nothing calls this directly

Calls 1

fromNativeMethod · 0.45

Tested by

no test coverage detected