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

Method endAt

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

Source from the content-addressed store, hash-verified

166 }
167
168 endAt(value: string | number | boolean, key?: string): Query {
169 if (key) {
170 return Query.fromNative(this.native.endAt(value as any, key as any));
171 } else {
172 return Query.fromNative(this.native.endAt(value as any));
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));

Callers

nothing calls this directly

Calls 2

endAtMethod · 0.65
fromNativeMethod · 0.45

Tested by

no test coverage detected