startAt method

Query<QueryJsImpl> startAt(
  1. dynamic value, [
  2. String? key
])

Returns a Query with the starting point value. The starting point is inclusive.

The value must be a num, String, bool, or null, or the error is thrown. The optional key can be used to further limit the range of the query.

Implementation

Query startAt(value, [String? key]) => Query.fromJsObject(
      key == null
          ? jsObject.startAt(jsify(value))
          : jsObject.startAt(jsify(value), key),
    );