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

Method startAt

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

Source from the content-addressed store, hash-verified

336 }
337
338 startAt(value: string | number | boolean, key?: string): Query {
339 if (key) {
340 return Query.fromNative(this.android.startAt(value as any, key));
341 } else {
342 return Query.fromNative(this.android.startAt(value as any));
343 }
344 }
345}
346
347export class ServerValue {

Callers

nothing calls this directly

Calls 2

startAtMethod · 0.65
fromNativeMethod · 0.45

Tested by

no test coverage detected