startAt method

DbQuery startAt(
  1. Object? value, {
  2. String? key,
})

Starts at value, optionally disambiguated by a child key.

Implementation

DbQuery startAt(Object? value, {String? key}) =>
    _with({'startAt': value, if (key != null) 'startAtKey': key});